diff --git a/.husky/pre-push b/.husky/pre-push index 3f6c7cabe..d3e8d78db 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -8,10 +8,10 @@ export NVM_DIR="$HOME/.nvm" if [ $(git branch --no-color | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/') = "master" ] && [ $(git remote get-url origin) = "https://github.com/monkeytypegame/monkeytype" ]; then nvm use - echo "Running tests before pushing to master..." - npm run test + echo "Running a full check before pushing to master..." + npm run full-check if [ $? -ne 0 ]; then - echo "Tests failed, aborting push." + echo "Full check failed, aborting push." exit 1 fi fi \ No newline at end of file