File tree Expand file tree Collapse file tree 2 files changed +24
-4
lines changed
Expand file tree Collapse file tree 2 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 1919 env :
2020 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
2121
22- - name : Run unit tests
23- run : yarn run test --coverage --forceExit --maxWorkers=2
24- continue-on-error : false
25-
2622 - name : SonarCloud Scan
2723 uses : sonarsource/sonarcloud-github-action@v2
2824 env :
Original file line number Diff line number Diff line change 1+ name : Test Runner
2+ on :
3+ push :
4+ branches :
5+ - master
6+ pull_request :
7+ types : [opened, synchronize, reopened]
8+ jobs :
9+ code-quality-check :
10+ name : Test Runner
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v3
14+ with :
15+ fetch-depth : 0
16+
17+ - name : Install dependencies
18+ uses : ./.github/actions/install-dependencies
19+ env :
20+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
21+
22+ - name : Run unit tests
23+ run : yarn run test --coverage --forceExit --maxWorkers=2
24+ continue-on-error : false
You can’t perform that action at this time.
0 commit comments