Skip to content

Commit

Permalink
fix(ci): replace nyc -> c8
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Dec 29, 2023
1 parent 308a238 commit 29835b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -26,7 +26,7 @@ jobs:

- name: (coverage) Install
if: matrix.nodejs >= 18
run: npm install -g nyc
run: npm install -g c8

- name: Build
run: npm run build
Expand All @@ -36,7 +36,7 @@ jobs:
if: matrix.nodejs < 18

- name: (coverage) Test
run: nyc --include=src npm test
run: c8 --include=src npm test
if: matrix.nodejs >= 18

- name: (coverage) Report
Expand Down

0 comments on commit 29835b6

Please sign in to comment.