mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-15 11:43:10 +03:00
Release v3.8.24 — see CHANGELOG.md [3.8.24] for the full notes and the PR description for the contributors hall. Integration of release/v3.8.24 into main.
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
|