13 lines
524 B
Bash
Executable File
13 lines
524 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# .husky/pre-push — fast deterministic gates (<10s total)
|
|
# Intentionally excludes test:unit (slow; covered by CI pre-push remote run).
|
|
# Activated: 2026-06-13 (6A.12 — replaced commented-out test:unit stub)
|
|
|
|
if ! command -v npm >/dev/null 2>&1; then
|
|
echo "⚠️ npm not found in PATH — skipping pre-push hooks"
|
|
echo " Run 'npm run check:any-budget:t11 && npm run check:tracked-artifacts' manually before pushing."
|
|
exit 0
|
|
fi
|
|
|
|
npm run check:any-budget:t11 && npm run check:tracked-artifacts
|