| name | deploy-check |
| description | Run full pre-deployment validation for both frontend and backend |
| disable-model-invocation | true |
Deploy Check
Run the complete validation checklist for both frontend and backend. Execute each step sequentially and stop on first failure.
Steps
- Frontend lint:
npm run lint
- Frontend tests:
npm test -- --watch=false
- Backend lint:
mise run lint
- Backend tests:
mise run test
Output
Report results as a summary:
Deploy Check Results
────────────────────
Frontend lint: PASS / FAIL
Frontend tests: PASS / FAIL
Backend lint: PASS / FAIL
Backend tests: PASS / FAIL
────────────────────
Result: READY / NOT READY
If any step fails, show the error output and stop. Do not continue to subsequent steps after a failure.