From 5193d2c24b1ee065d4abc759695d1a1da6e97fa4 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 2 Dec 2025 05:27:35 +0000 Subject: [PATCH] refactor(quality-checks): remove module-specific coverage checks for backend and frontend --- .github/workflows/quality-checks.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/quality-checks.yml b/.github/workflows/quality-checks.yml index 5321f811..46c7cb4a 100644 --- a/.github/workflows/quality-checks.yml +++ b/.github/workflows/quality-checks.yml @@ -49,10 +49,6 @@ jobs: # Codecov upload moved to `codecov-upload.yml` which is push-only. - - name: Enforce module-specific coverage (backend) - working-directory: ${{ github.workspace }} - run: bash scripts/check-module-coverage.sh --backend-only - continue-on-error: false - name: Run golangci-lint uses: golangci/golangci-lint-action@e7fa5ac41e1cf5b7d48e45e42232ce7ada589601 # v9.1.0 @@ -109,10 +105,7 @@ jobs: # Codecov upload moved to `codecov-upload.yml` which is push-only. - - name: Enforce module-specific coverage (frontend) - working-directory: ${{ github.workspace }} - run: bash scripts/check-module-coverage.sh --frontend-only - continue-on-error: false + - name: Run frontend lint working-directory: frontend