feat: 英文搜索+配方名翻译 #25

Merged
hera merged 5 commits from feat/english-search into main 2026-04-11 17:30:23 +00:00
Showing only changes of commit e605da786a - Show all commits

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: