14 lines
187 B
Bash
Executable File
14 lines
187 B
Bash
Executable File
#!/bin/sh
|
|
# Pre-commit hook to run security checks
|
|
|
|
echo "Running security checks..."
|
|
|
|
# Run security scan
|
|
npm run security:scan
|
|
|
|
# Run lint
|
|
npm run lint
|
|
|
|
echo "Security checks passed!"
|
|
|