11 lines
254 B
Plaintext
11 lines
254 B
Plaintext
|
|
#!/usr/bin/env sh
|
||
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
||
|
|
|
||
|
|
# Optional: Run security audit before pushing
|
||
|
|
# Uncomment to enable strict security checks before push
|
||
|
|
# echo "🔍 Running security audit..."
|
||
|
|
# pnpm security:check
|
||
|
|
|
||
|
|
echo "✅ Pre-push checks passed"
|
||
|
|
|