Skip to content

Instantly share code, notes, and snippets.

@KooperL
Created June 28, 2024 12:39
Show Gist options
  • Save KooperL/12b80efc21e89bb8b6aa22068e096737 to your computer and use it in GitHub Desktop.
Save KooperL/12b80efc21e89bb8b6aa22068e096737 to your computer and use it in GitHub Desktop.
#!/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