2025-12-17 14:10:22 +09:00
|
|
|
# Stage all modified tracked files (includes manual fixes to already-staged files)
|
|
|
|
|
git add -u
|
|
|
|
|
|
|
|
|
|
# Run lint-staged on staged files (checks linting, formats with prettier, and re-stages)
|
2025-12-12 11:47:17 +09:00
|
|
|
pnpm lint-staged
|
2025-12-17 14:10:22 +09:00
|
|
|
|
2026-03-07 15:22:12 +09:00
|
|
|
# Run type check (temporarily disabled - story file TS errors need fixing)
|
|
|
|
|
# pnpm type-check
|
2025-12-10 13:38:16 +09:00
|
|
|
|
2025-12-12 11:47:17 +09:00
|
|
|
# Security audit is enforced in CI (`.github/workflows/security.yml`).
|