From 8b20db5fb8a230b9db6dace9ef07f1f1f3230e1d Mon Sep 17 00:00:00 2001 From: Eduarda Scharnhorst Date: Wed, 17 Jun 2026 16:10:18 +0100 Subject: [PATCH 1/2] chore: update code-health workflow to allow coverage failures on specific Node versions --- .github/workflows/code-health.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/code-health.yml b/.github/workflows/code-health.yml index 4e9e729d5..e9082d477 100644 --- a/.github/workflows/code-health.yml +++ b/.github/workflows/code-health.yml @@ -23,6 +23,8 @@ jobs: - os: ubuntu-latest node-version: "26" fail-fast: false + # Ubuntu + Node 22 is the one used for coverage; failures there must not fail the job or block merged coverage. + continue-on-error: ${{ matrix.os == 'ubuntu-latest' && (matrix.node-version == '24' || matrix.node-version == '26') }} runs-on: ${{ matrix.os }} steps: - uses: GitHubSecurityLab/actions-permissions/monitor@v1 From c5110f189849350d32accb837fe849675de83201 Mon Sep 17 00:00:00 2001 From: Eduarda Scharnhorst Date: Wed, 17 Jun 2026 18:00:02 +0100 Subject: [PATCH 2/2] chore: update continue on error to be true regarless the test step --- .github/workflows/code-health.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/code-health.yml b/.github/workflows/code-health.yml index e9082d477..57093e52e 100644 --- a/.github/workflows/code-health.yml +++ b/.github/workflows/code-health.yml @@ -23,8 +23,7 @@ jobs: - os: ubuntu-latest node-version: "26" fail-fast: false - # Ubuntu + Node 22 is the one used for coverage; failures there must not fail the job or block merged coverage. - continue-on-error: ${{ matrix.os == 'ubuntu-latest' && (matrix.node-version == '24' || matrix.node-version == '26') }} + continue-on-error: true runs-on: ${{ matrix.os }} steps: - uses: GitHubSecurityLab/actions-permissions/monitor@v1