Run the full pre-deployment checklist before shipping to production
Run the full pre-deployment checklist for Tandem. Do not skip any step.
1. Code Quality
pnpm test — report any failures. Stop if any test fails.pnpm lint — report any errors. Stop if any error found.pnpm type-check — report any TypeScript errors. Stop if any found.2. Environment
.env.example documents every environment variable used in the codebase.env file (with real values) is tracked by git: run git ls-files | grep .env3. Database
pnpm prisma migrate statuspnpm prisma db pull should show no changes4. Security
git log --all -p | grep -i "xoxb-\|xoxp-\|sk-\|AIza\|AKIA" — report any matches5. Slack
6. Application Behavior
Report all findings with PASS / FAIL status for each item. Only give a final "Ready to deploy" if every item is PASS.