Skip to content

DX: add a just check command that runs lint + typecheck + test (Closes #1505) - #1619

Open
waterWang wants to merge 1 commit into
Remitwise-Org:mainfrom
waterWang:fix/add-just-check-command
Open

DX: add a just check command that runs lint + typecheck + test (Closes #1505)#1619
waterWang wants to merge 1 commit into
Remitwise-Org:mainfrom
waterWang:fix/add-just-check-command

Conversation

@waterWang

Copy link
Copy Markdown
Contributor

Summary

Adds a check npm script and a check just recipe that runs lint + typecheck + test, providing a single command for the full local verification loop.

Changes

  • package.json: Added "check": "npm run lint && npm run typecheck && npm test" script
  • justfile: Added check recipe that delegates to npm run check

Verification

  • just check runs npm run check which runs npm run lintnpm run typechecknpm test
  • The commands are already documented in CONTRIBUTING.md (lines 92-93) and docs/testing.md (line 243)
  • Both the npm script and just recipe are idempotent (safe to re-run)

Closes #1505

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

DX: add a just check that runs lint + typecheck + test

1 participant