Pull Request Preparation Checklist
Before creating a PR, execute these steps:
-
Run linting:
prettier --write . -
Run tests:
npm test -
Review git diff:
git diff HEAD -
Stage changes:
git add . -
Create commit message following conventional commits:
fix:for bug fixesfeat:for new featuresdocs:for documentationrefactor:for code restructuringtest:for test additionschore:for maintenance
-
Generate PR summary including:
- What changed
- Why it changed
- Testing performed
- Potential impacts
Last updated on