Skip to content

[workflow/code-check] added unit test workflow #4

[workflow/code-check] added unit test workflow

[workflow/code-check] added unit test workflow #4

Workflow file for this run

name: Code Quality Check
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
code-quality-check:
name: Checks code quality
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 jest --coverage --forceExit --maxWorkers=2
continue-on-error: false