From 29590492c74263923e7f8c84ede3670ce4f023fc Mon Sep 17 00:00:00 2001 From: Naiyuan Qing <145280634+NevilleQingNY@users.noreply.github.com> Date: Tue, 10 Feb 2026 18:24:49 +0800 Subject: [PATCH] docs: add pre-push checks requirement --- CLAUDE.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 93108cd3..48244241 100644 --- a/CLAUDE.md +++ b/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 +```