From c0ea049ad738c537114089049f385d41c5a48546 Mon Sep 17 00:00:00 2001 From: "Abdullah." <125115953+mabdullahabaid@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:57:01 +0500 Subject: [PATCH] fix: remove the error message for test failure in ci-front (#18076) Introduced an error message on twenty-front CI earlier to try and inform the user that test failure could be a coverage issue if no individual test was failing. However, it led to the assumption that it must be coverage failure in all cases even when it was test failure leading to the CI being red. This PR reverts the change. --- .github/workflows/ci-front.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/ci-front.yaml b/.github/workflows/ci-front.yaml index 28fd097c00..f3b0247357 100644 --- a/.github/workflows/ci-front.yaml +++ b/.github/workflows/ci-front.yaml @@ -202,14 +202,6 @@ jobs: with: tag: scope:frontend tasks: ${{ matrix.task }} - - name: Check for coverage threshold failure - if: always() && steps.run-task.outcome == 'failure' && matrix.task == 'test' - shell: bash - run: | - echo "::error::The test task failed. If no individual test is failing, this is likely a coverage threshold not being met." - echo "" - echo "To debug locally, run: npx nx run twenty-front:test:ci" - exit 1 - name: Save ${{ matrix.task }} cache uses: ./.github/actions/save-cache with: