aboutsummaryrefslogtreecommitdiff
path: root/.husky/pre-commit
blob: 9d7d66dbf316064f855571ca58cdc85f6594ee6f (plain)
1
2
3
4
5
6
7
if echo "$1" | grep -q "\[skip ci\]"; then
  echo "Skipping CI for commit with [skip ci] in message"
  exit 0
else 
  npx lint-staged
  npm test
fi