From 96678ea574f46d1ea42e7631256d31e8a5259634 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 25 Dec 2023 23:10:57 +0100 Subject: [PATCH] build(ci): fix coverage report MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .github/workflows/ci.yml | 8 ++++---- .mocharc.json | 2 +- package.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b4c8329..58a8fe5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,10 +57,10 @@ jobs: if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} run: pnpm coverage - - name: Fix Coverage Report Paths - if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} - working-directory: ./coverage - run: sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' lcov.info + # - name: Fix Coverage Report Paths + # if: ${{ matrix.os == 'ubuntu-latest' && matrix.node == '20.x' }} + # working-directory: ./coverage + # run: sed -i 's@'$GITHUB_WORKSPACE'@/github/workspace/@g' lcov.info - name: Check for SonarCloud Token Availability id: sonar-token diff --git a/.mocharc.json b/.mocharc.json index 676d4f02..f6014cbe 100644 --- a/.mocharc.json +++ b/.mocharc.json @@ -6,7 +6,7 @@ "timeout": 20000, "full-trace": true, "exit": true, - "enable-source-maps": true, + "enable-source-maps": false, "reporter": "mochawesome", "reporter-options": "reportDir=outputs/mochawesome-report,json=false", "require": ["mochawesome/register"] diff --git a/package.json b/package.json index 7b903032..d6f2cdfb 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "benchmark": "pnpm build && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs", "benchmark:prod": "pnpm build:prod && node --max-old-space-size=8192 --enable-source-maps benchmarks/internal/bench.mjs", "benchmark:debug": "pnpm build && node --max-old-space-size=8192 --enable-source-maps --inspect benchmarks/internal/bench.mjs", - "test": "pnpm build --environment SOURCEMAP:false && cross-env NODE_ENV=test c8 mocha 'tests/**/*.test.mjs'", + "test": "pnpm build --environment SOURCEMAP:true && cross-env NODE_ENV=test c8 mocha 'tests/**/*.test.mjs'", "test:debug": "pnpm build && cross-env NODE_ENV=test mocha --no-parallel --inspect 'tests/**/*.test.mjs'", "coverage": "c8 report --reporter=lcov", "coverage:html": "c8 report --reporter=html", -- 2.34.1