mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-29 06:20:07 +08:00
* Refactor to typescript * Fix platform and workflow * Fix workflow and platform * Update husky and image-tag * Use 'yarn lint-staged' instead of 'npx lint-staged'
12 lines
130 B
Bash
12 lines
130 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
|