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 67e7c5e commit f1f3e43Copy full SHA for f1f3e43
.github/workflows/test.yml
@@ -15,4 +15,11 @@ jobs:
15
- name: TypeScript validity
16
run: npm run test:typescript
17
- name: Coverage
18
- run: npx c8 mocha
+ run: npx c8 --reporter cobertura --reporter text mocha
19
+ - name: Upload coverage
20
+ uses: codecov/codecov-action@v2
21
+ with:
22
+ token: ${{ secrets.CODECOV_TOKEN }}
23
+ files: ./coverage/cobertura-coverage.xml
24
+ flags: unittests
25
+ fail_ci_if_error: true
0 commit comments