Created
June 28, 2024 12:39
-
-
Save KooperL/12b80efc21e89bb8b6aa22068e096737 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
yarn lint | |
linting_result=$? | |
if [[ $linting_result -ne 0 ]] | |
then | |
echo "LINT FAILED!" | |
echo 'Please fix linting problems before committing.' | |
exit 1 | |
fi | |
yarn test | |
test_result=$? | |
if [[ $test_result -ne 0 ]] | |
then | |
echo "TESTS FAILED!" | |
echo 'Please make sure tests pass before committing.' | |
exit 1 | |
fi | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment