mirror of
https://github.com/Kpa-clawbot/meshcore-analyzer.git
synced 2026-03-30 18:15:47 +00:00
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:
5
.github/workflows/deploy.yml
vendored
5
.github/workflows/deploy.yml
vendored
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user