How to Run Gates in CI
Goal: enforce gates before merge or deploy.
Steps
- Validate PRD shape
bun run prd:validate- Run PRD in CI
- name: Run PRD
run: bun run prd.ts- Fail fast on the first failing gate
runPrdstops on first failure by default
Goal: enforce gates before merge or deploy.
bun run prd:validate- name: Run PRD
run: bun run prd.tsrunPrd stops on first failure by default