diff --git a/.husky/pre-commit b/.husky/pre-commit index d1ca4e09..a9343f42 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -7,9 +7,9 @@ echo '--- check code style ---' pnpm exec lint-staged echo '--- run typescript check ---' -#pnpm check-types +pnpm check-types echo '--- run tests ---' # CI=1 disallows `.only` in tests # --changed only runs the tests affected by changed files -#CI=1 pnpm exec vitest run --changed --passWithNoTests +CI=1 pnpm exec vitest run --changed --passWithNoTests