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>
This commit is contained in:
Kpa-clawbot
2026-03-26 22:34:42 -07:00
parent 6c76c5b117
commit 08ed88ad80

View File

@@ -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'