mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:01:09 +02:00
docs(claude-md): document \validate:all\ + \test:coverage\ in Quick Start
The Quality block listed build / type-check / format but not the two audit-adjacent commands added this session. \`validate:all\` is the local mirror of CI's validate job (turbo recursion + pgSchema + crypto registry) and is the right pre-push gate; \`test:coverage\` emits the lcov + json-summary artifacts that CI uploads. Both were already documented in their per-topic guidelines (authentication.md, database.md, testing.md) — this just surfaces them in the root Quick Start so contributors don't have to know which guideline mentions which command. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
3179fa10cf
commit
9d69e4419d
1 changed files with 6 additions and 0 deletions
|
|
@ -83,8 +83,14 @@ Quality:
|
||||||
pnpm run build
|
pnpm run build
|
||||||
pnpm run type-check
|
pnpm run type-check
|
||||||
pnpm run format
|
pnpm run format
|
||||||
|
pnpm run validate:all # turbo recursion + pgSchema + crypto registry — run before push
|
||||||
|
pnpm run test:coverage # emit v8 coverage under per-package coverage/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
`validate:all` is the local mirror of the CI `validate` job — it runs in
|
||||||
|
seconds and fails fast on any of the three invariant checks. Use it as a
|
||||||
|
pre-push gate.
|
||||||
|
|
||||||
## Key Architecture Notes
|
## Key Architecture Notes
|
||||||
|
|
||||||
These are the patterns that span the repo. Service-/app-specific details live in their own CLAUDE.md.
|
These are the patterns that span the repo. Service-/app-specific details live in their own CLAUDE.md.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue