mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-02 13:22:11 +03:00
Comment out the npm availability guard and unit test execution in the pre-push hook so pushes are no longer blocked by local hook checks. This shifts validation away from developer machines and avoids failures in environments where npm is unavailable or hooks are undesired.
9 lines
216 B
Bash
Executable File
9 lines
216 B
Bash
Executable File
#!/usr/bin/env sh
|
|
#if ! command -v npm >/dev/null 2>&1; then
|
|
# echo "⚠️ npm not found in PATH — skipping pre-push hooks"
|
|
# echo " Run 'npm test' manually before pushing."
|
|
# exit 0
|
|
#fi
|
|
|
|
#npm run test:unit
|