9 lines
173 B
Bash
Executable file
9 lines
173 B
Bash
Executable file
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
# Run tests first
|
|
echo "Running tests..."
|
|
npm run test:run --workspace=packages/admin-ui
|
|
|
|
# Run linting
|
|
npx lint-staged
|