Verify Skill
Run lint → tests and report results.
Steps
- •Run
npm run lintto check code quality (read-only, no auto-fix) - •Run
npm testto run all tests - •Summarize results:
- •✅ All checks passed → ready to commit
- •❌ Some checks failed → show what failed and suggest next action
Notes
- •Use
npm run lint(notnpm run lint:fix) —lint:fixauto-fixes files which is not suitable for verification - •Does not run tests in watch mode (use
npm run test:watchmanually for that) - •Does not run coverage (use
npm run test:coveragemanually for that) - •Does not commit or push changes