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 308a238 commit 6e2468eCopy full SHA for 6e2468e
.github/workflows/ci.yml
@@ -26,7 +26,7 @@ jobs:
26
27
- name: (coverage) Install
28
if: matrix.nodejs >= 18
29
- run: npm install -g nyc
+ run: npm install -g c8
30
31
- name: Build
32
run: npm run build
@@ -36,13 +36,13 @@ jobs:
36
if: matrix.nodejs < 18
37
38
- name: (coverage) Test
39
- run: nyc --include=src npm test
+ run: c8 --include=src npm test
40
41
42
- name: (coverage) Report
43
44
run: |
45
- nyc report --reporter=text-lcov > coverage.lcov
+ c8 report --reporter=text-lcov > coverage.lcov
46
bash <(curl -s https://codecov.io/bash)
47
env:
48
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
0 commit comments