pdnsmanager/utils/pre-commit.hook

28 lines
308 B
Plaintext
Raw Normal View History

#!/bin/bash
cd frontend
2018-03-21 17:30:24 +01:00
if ! npm run lint
then
echo "Frontend lint failed"
exit 1
2018-03-23 16:37:11 +01:00
fi
cd ..
2018-03-21 17:30:24 +01:00
2018-03-23 16:37:11 +01:00
cd backend/src
2018-03-21 17:30:24 +01:00
if ! composer run-script lint
then
echo "Backend lint failed"
exit 2
fi
2018-03-30 10:02:25 +02:00
cd ../..
cd backend/test
if ! ./test.sh all
then
echo "Backend test failed"
exit 3
fi
cd ../..
2018-03-21 17:30:24 +01:00
2018-03-30 10:02:25 +02:00
exit 0