Quality Assurance Skill
Ensures the project meets stability, styling, and testing standards before code is shipped.
Checkpoints
- •
Linting: Catch formatting and static analysis rules.
powershellbun run lint
- •
Types: Verify TypeScript integrity.
powershellbun run typecheck
- •
Astro: Check component and route validity.
powershellbun run astro:check
- •
Testing: Run the unit test suite.
powershellbun test
- •
Consolidated Check: Run the full suite if time permits.
powershellbun run check
When to Use
- •Mandatory before committing logic changes.
- •Required before opening any Pull Request.
- •Recommended after upgrading project dependencies.
Skip Policy
- •Documentation-only (
.md) changes may skip full QA, but should still be formatted with Prettier.