Skip to content

[unit-testing]

[unit-testing] #27

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
code-quality-check:
name: Test Runner
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install dependencies
uses: ./.github/actions/install-dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run unit tests
run: yarn run test --coverage --forceExit --maxWorkers=2
continue-on-error: false