From 08ed88ad8086b1c88e615e2f4e426b2cc620c8ed Mon Sep 17 00:00:00 2001 From: Kpa-clawbot <259247574+Kpa-clawbot@users.noreply.github.com> Date: Thu, 26 Mar 2026 22:34:42 -0700 Subject: [PATCH] ci: skip frontend coverage while optimizing the script Frontend coverage collection has 169 blind sleeps totaling 104s, making CI take 13+ minutes. Disabled until the script is optimized. Backend tests + E2E still run. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9817509..1b83b27 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -40,8 +40,9 @@ jobs: # If test files changed, run everything if [ "$TESTS" -gt 0 ]; then BACKEND=1; FRONTEND=1; fi echo "backend=$([[ $BACKEND -gt 0 ]] && echo true || echo false)" >> $GITHUB_OUTPUT - echo "frontend=$([[ $FRONTEND -gt 0 ]] && echo true || echo false)" >> $GITHUB_OUTPUT - echo "Changes: backend=$BACKEND frontend=$FRONTEND tests=$TESTS ci=$CI" + # Frontend coverage temporarily disabled — 169 blind sleeps = 13min CI + echo "frontend=false" >> $GITHUB_OUTPUT + echo "Changes: backend=$BACKEND frontend=$FRONTEND (coverage SKIPPED) tests=$TESTS ci=$CI" - name: Backend tests + coverage if: steps.changes.outputs.backend == 'true'