aboutsummaryrefslogtreecommitdiffstats
path: root/.husky/pre-commit
blob: 7595a11968c955e2a5bac42f835f006e3d5717c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

FILE_NAME="$(dirname "$0")/_/husky.sh"

# Conditionally invoke so as to avoid running pnpm commands if this is a clean checkout (ie before installing node modules)
if [ -f $FILE_NAME ]; then
  . $FILE_NAME
  pnpm prepare-code
  pnpm test
fi