Last active
December 27, 2015 12:29
-
-
Save ludder/7326589 to your computer and use it in GitHub Desktop.
Running Grunt or Codeception on Git pre-commit hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Start Git pre commit hook" | |
#!/bin/sh | |
# stash unstaged changes, run release task, stage release updates and restore stashed files | |
NAME=$(git branch | grep '*' | sed 's/* //') | |
# don't run on rebase | |
if [ $NAME != '(no branch)' ] | |
then | |
git stash -q --keep-index | |
# grunt release | |
php codecept.phar run | |
RETVAL=$? | |
if [ $RETVAL -ne 0 ] | |
then | |
exit 1 | |
fi | |
git add . | |
git stash pop -q | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment