mirror of
https://github.com/pockethost/pockethost.git
synced 2025-06-04 05:06:41 +00:00
11 lines
171 B
Bash
Executable File
11 lines
171 B
Bash
Executable File
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
|
|
branch="$(git rev-parse --abbrev-ref HEAD)"
|
|
if [ "$branch" = "master" ]; then
|
|
yarn check:types
|
|
yarn lint
|
|
fi
|
|
|