| name | verify |
| description | Run the full quality gate across both packages — type-check, lint, and test. Use before committing or after significant changes. |
Run the monorepo verification gate from the repository root:
npm run verify
This runs npm run check (TypeScript type-check) and npm test across both GedOC and GedPi.
If working only in GedPi and you need the full GedPi-specific gate (includes Biome lint + pack check):
npm --prefix packages/gedpi run verify
If verification fails:
- Fix type errors first (
npm run check output)
- Fix lint errors (
npm --prefix packages/gedpi run lint)
- Fix test failures last
- Re-run until clean