Pr Prep
Workflow
- •Run
npm run fixand wait for completion. - •If it fails, investigate and fix the root cause, then re-run
npm run fixuntil it succeeds. - •Run
npm testand wait for completion. - •If it fails, fix the issue(s), then re-run
npm testuntil it succeeds. - •Run
npm run buildand wait for completion. - •If it fails, fix the issue(s), then re-run
npm run builduntil it succeeds.
Rules
- •Keep the order strict: fix → test → build.
- •Do not start the next step until the current step passes.
- •Re-run the same step after fixing; do not skip ahead.
- •Stop only when all three commands pass in order.