perf(husky): do not run checks if folder wasn't changed

This commit is contained in:
Lucas Nogueira 2021-04-24 20:39:27 -03:00
parent d13afec204
commit 11dc184e01
No known key found for this signature in database
GPG Key ID: 2714B66BCFB01F7F

View File

@ -6,14 +6,29 @@
. "$(dirname "$0")/_/husky.sh" . "$(dirname "$0")/_/husky.sh"
cd tooling/api if [ -z "$(git diff --name-only tooling/api)" ]; then
yarn format echo "skipping api - no changes detected"
yarn lint-fix else
cd tooling/api
yarn format
yarn lint-fix
cd ../..
fi
cd ../cli.js if [ -z "$(git diff --name-only tooling/cli.js)" ]; then
yarn format echo "skipping cli.js - no changes detected"
yarn lint-fix else
cd tooling/cli.js
yarn format
yarn lint-fix
cd ../..
fi
cd ../create-tauri-app if [ -z "$(git diff --name-only tooling/create-tauri-app)" ]; then
yarn format echo "skipping create-tauri-app - no changes detected"
yarn lint-fix else
cd tooling/create-tauri-app
yarn format
yarn lint-fix
cd ../..
fi