docs: add pre-push checks requirement
This commit is contained in:
parent
8b660e536c
commit
29590492c7
1 changed files with 15 additions and 0 deletions
15
CLAUDE.md
15
CLAUDE.md
|
|
@ -157,3 +157,18 @@ git commit -m "refactor(utils): simplify date formatting"
|
|||
git add README.md
|
||||
git commit -m "docs: update API documentation"
|
||||
```
|
||||
|
||||
## Pre-push Checks
|
||||
|
||||
Before pushing, always run:
|
||||
|
||||
```bash
|
||||
pnpm typecheck # Type check all packages
|
||||
pnpm test # Run tests
|
||||
```
|
||||
|
||||
This ensures CI will pass. For a clean check (no cache):
|
||||
|
||||
```bash
|
||||
pnpm turbo typecheck --force
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue