Skip to content

Commit 7b0b028

Browse files
committed
fix: pre push verification doesnt work locally
1 parent 9c4a83a commit 7b0b028

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.husky/pre-push

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
. "$(dirname "$0")/_/husky.sh"
33

44
npm run build
5-
if [[ -z "${SKIP_TEST_RUN_GITHUB}" ]]; then
5+
if [ -z "${SKIP_TEST_RUN_GITHUB}" ]; then
66
npm run test
77
else
88
echo "skipping test run as GitHub Actions environment test run skip is set"

0 commit comments

Comments
 (0)