We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 099e7e0 commit a62577aCopy full SHA for a62577a
1 file changed
.github/workflows/code-check.yaml
@@ -0,0 +1,22 @@
1
+name: Code Quality Check
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
+ types: [opened, synchronize, reopened]
8
+jobs:
9
+ code-quality-check:
10
+ name: Checks code quality
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ with:
15
+ fetch-depth: 0
16
+ - name: Install dependencies
17
+ uses: ./.github/actions/install-dependencies
18
+ env:
19
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
+ - name: Run unit tests
21
+ run: yarn jest --coverage --forceExit --maxWorkers=2
22
+ continue-on-error: false
0 commit comments