9 lines
146 B
Plaintext
9 lines
146 B
Plaintext
|
#!/bin/sh
|
||
|
. "$(dirname "$0")/_/husky.sh"
|
||
|
|
||
|
#推送之前运行eslint检查
|
||
|
npm run lint
|
||
|
#推送之前运行单元测试检查
|
||
|
#npm run test:unit
|
||
|
|