From 29835b6cbb8e98594ec9ec816dd5ee4166d6f72a Mon Sep 17 00:00:00 2001 From: Luke Edwards Date: Fri, 29 Dec 2023 09:35:08 -0800 Subject: [PATCH] fix(ci): replace nyc -> c8 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa14e9b..91f24a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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