#10310 run yarn pre-commit only if static files changed

This commit is contained in:
Arthur 2022-09-09 15:17:21 -07:00
parent 77868a9b17
commit 333a95db4e

View File

@ -41,9 +41,13 @@ if [ $? != 0 ]; then
fi
echo "Checking UI ESLint, TypeScript, and Prettier compliance..."
yarn --cwd "$PWD/netbox/project-static" validate
if [ $? != 0 ]; then
EXIT=1
git diff --cached --name-only | if grep --quiet 'netbox/project-static/'
then
echo "Checking UI ESLint, TypeScript, and Prettier compliance..."
yarn --cwd "$PWD/netbox/project-static" validate
if [ $? != 0 ]; then
EXIT=1
fi
fi
if [ $EXIT != 0 ]; then