name: lint-build-test description: How to check code by linting, building, and testing.
When asked to check, lint, build, or test code, follow these steps:
1. Analyze changed files
First, check which files have changed using git status or git diff --name-only.
Categorize the changes:
-
Source files:
.ts,.js,.mts,.mjs,.cjs,.cts,.tsx,.jsx -
Meta files:
.md,.yml,.yaml,.json,.html
2. Determine what to run
Based on the changed files:
- No files changed: Nothing to do.
-
Only meta files changed: Run only
yarn lint:misc --write(oryarn workspace <package-name> lint:misc --writefor a specific package). - Source files changed: Run the full check (see below).
3. Run the full check (if needed)
For a specific package
If a package name is specified (e.g. @metamask/ocap-kernel):
-
yarn workspace <package-name> lint:fix -
yarn workspace <package-name> build -
yarn workspace <package-name> test:dev:quiet
For the entire monorepo
If no package is specified:
-
yarn lint:fix -
yarn build -
yarn test:dev:quiet
Report any errors encountered during these steps.
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
6
GitHub Forks
5
Created
Mar 2026
Last Updated
3个月前
tools
tools automation tools
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!