mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-15 03:55:41 +08:00
11 lines
No EOL
375 B
Bash
11 lines
No EOL
375 B
Bash
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
if [ $(git branch --no-color | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/') = "master" ] && [ $(git remote get-url origin) = "https://github.com/monkeytypegame/monkeytype" ]; then
|
|
echo "Running tests before pushing to master..."
|
|
npm run test
|
|
if [ $? -ne 0 ]; then
|
|
echo "Tests failed, aborting push."
|
|
exit 1
|
|
fi
|
|
fi |