From 6328d740b97d72ccc06b57ea0824d112f63c41c7 Mon Sep 17 00:00:00 2001 From: Tane Morgan <464864+tanem@users.noreply.github.com> Date: Sat, 21 Feb 2026 08:53:23 +1300 Subject: [PATCH] Fix coverage reporting... again --- .github/workflows/ci.yml | 1 + scripts/jest/config.src.js | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8e06d7194..a13137831 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,7 @@ jobs: - run: npm test - uses: codecov/codecov-action@v5 with: + disable_search: true fail_ci_if_error: true files: ./coverage/lcov.info token: ${{ secrets.CODECOV_TOKEN }} diff --git a/scripts/jest/config.src.js b/scripts/jest/config.src.js index 6097db704..c6e9fbb87 100644 --- a/scripts/jest/config.src.js +++ b/scripts/jest/config.src.js @@ -61,6 +61,7 @@ const generateSetupFiles = (reactVersion) => { module.exports = { collectCoverage: true, collectCoverageFrom: ['src/*.{ts,tsx}'], + coverageReporters: ['lcov', 'text'], moduleFileExtensions: ['ts', 'tsx', 'js'], moduleNameMapper: { ...generateReactVersionMappings(process.env.REACT_VERSION),