Skip to content

Instantly share code, notes, and snippets.

@zfkun
Forked from treelite/pre-commit.sh
Created March 14, 2014 05:20
Show Gist options
  • Save zfkun/9542522 to your computer and use it in GitHub Desktop.
Save zfkun/9542522 to your computer and use it in GitHub Desktop.
#!/bin/sh
#
# path: .git/hooks/pre-commit
echo "\n\x1B[33mCommit checking ...\x1B[0m\n"
npm test
exitCode=$?
if [ $exitCode -ne 0 ]
then
echo "\n\x1B[31mUT fail, abort commit\x1B[0m\n"
fi
exit $exitCode
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment