fix: CI用timeout命令强制3分钟超时+清理Cypress进程
All checks were successful
Deploy Production / test (push) Successful in 6s
Deploy Production / deploy (push) Successful in 5s
Test / unit-test (push) Successful in 5s
Test / build-check (push) Successful in 4s
Test / e2e-test (push) Successful in 49s
PR Preview / teardown-preview (pull_request) Has been skipped
PR Preview / test (pull_request) Successful in 5s
PR Preview / deploy-preview (pull_request) Successful in 10s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit was merged in pull request #25.
This commit is contained in:
2026-04-11 17:23:57 +00:00
parent 87e24773aa
commit e605da786a

View File

@@ -58,9 +58,9 @@ jobs:
exit 1
fi
# Run core cypress specs with timeouts
# Run core cypress specs with hard 3-minute timeout
cd frontend
npx cypress run --spec "\
timeout 180 npx cypress run --spec "\
cypress/e2e/recipe-detail.cy.js,\
cypress/e2e/oil-reference.cy.js,\
cypress/e2e/oil-data-integrity.cy.js,\
@@ -73,7 +73,12 @@ jobs:
# Cleanup
kill $BE_PID $FE_PID 2>/dev/null
pkill -f "Cypress" 2>/dev/null || true
rm -f "$DB_FILE"
if [ $EXIT_CODE -eq 124 ]; then
echo "ERROR: Cypress timed out after 3 minutes"
exit 1
fi
exit $EXIT_CODE
build-check: