mirror of
https://github.com/game-ci/unity-activate
synced 2026-01-28 21:59:05 +08:00
14 lines
144 B
Bash
14 lines
144 B
Bash
#!/bin/sh
|
|
. "$(dirname "$0")/_/husky.sh"
|
|
|
|
if [ -t 1 ]; then
|
|
exec < /dev/tty
|
|
fi
|
|
|
|
yarn lint-staged
|
|
yarn lint
|
|
yarn test
|
|
|
|
yarn build
|
|
git add dist
|