Skip to content

Instantly share code, notes, and snippets.

@leongaban
Created September 22, 2017 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leongaban/4eea4ae1cb96097cf4f648c7821ea17f to your computer and use it in GitHub Desktop.
Save leongaban/4eea4ae1cb96097cf4f648c7821ea17f to your computer and use it in GitHub Desktop.
githooks pre-push
#!/bin/sh
yarn run test-eslint
RESULT=$?
[ $RESULT -ne 0 ] && exit 1
yarn run test-jest
RESULT=$?
[ $RESULT -ne 0 ] && exit 1
exit 0
# npm install git-hooks first
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment