11 lines
367 B
Plaintext
Raw Permalink Normal View History

# 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)
pnpm lint-staged
# Run type check (temporarily disabled - story file TS errors need fixing)
# pnpm type-check
# Security audit is enforced in CI (`.github/workflows/security.yml`).