Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Merge pull request #115 from gh640/create-pull-request/patch #221

Merge pull request #115 from gh640/create-pull-request/patch

Merge pull request #115 from gh640/create-pull-request/patch #221

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
env:
NODE_VERSION: '18'
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
- name: Install packages
run: npm install
- name: Run Unit Tests
run: npm run test:unit
- name: Run Integration Tests
run: npm run test:integration
- name: Run E2E Tests
run: npm run test:e2e