We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7dc2b6 commit c647818Copy full SHA for c647818
.github/workflows/test.yml
@@ -33,11 +33,11 @@ jobs:
33
- name: Run tests with coverage
34
run: npm run test:coverage
35
36
- - name: Upload coverage reports
37
- uses: codecov/codecov-action@v3
38
- if: matrix.node-version == '20.x'
+ - name: Coverage Report
+ uses: ArtiomTr/jest-coverage-report-action@v2
+ if: matrix.node-version == '20.x' && github.event_name == 'pull_request'
39
with:
40
- file: ./coverage/coverage-final.json
41
- flags: unittests
42
- name: codecov-umbrella
43
- continue-on-error: true
+ coverage-file: ./coverage/coverage-summary.json
+ base-coverage-file: ./coverage/coverage-summary.json
+ annotations: all
+ test-script: npm run test:coverage
0 commit comments