chore(root): add master pre-push checks

This commit is contained in:
Ben Allfree 2024-06-05 18:29:44 -07:00
parent ea19963bf9
commit 26b9a3fc2f

6
.husky/pre-push Normal file
View File

@ -0,0 +1,6 @@
branch="$(git rev-parse --abbrev-ref HEAD)"
if [ "$branch" = "master" ]; then
pnpm check-types
pnpm build-frontends
fi