pdnsmanager/utils/pre-commit.hook
2018-03-30 10:02:25 +02:00

28 lines
308 B
Bash
Executable file

#!/bin/bash
cd frontend
if ! npm run lint
then
echo "Frontend lint failed"
exit 1
fi
cd ..
cd backend/src
if ! composer run-script lint
then
echo "Backend lint failed"
exit 2
fi
cd ../..
cd backend/test
if ! ./test.sh all
then
echo "Backend test failed"
exit 3
fi
cd ../..
exit 0