From 7d49c1d386338369d77b1c622d46d8c70f02720b Mon Sep 17 00:00:00 2001 From: Bart Veneman Date: Sun, 2 Jun 2024 11:45:15 +0200 Subject: [PATCH] use `--reporter=lcov` for c8 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fcaf8e7..fd5f719 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: - name: Install dependencies run: npm install --ignore-scripts --no-audit --no-fund - name: Unit tests - run: npx c8 npm test + run: npx c8 --reporter=lcov npm test - name: Check types run: npm run check - name: Lint JS