summaryrefslogtreecommitdiffstats
path: root/bin/git/hooks/pre-commit
blob: 474894075d95d159216600be10a8cf4fa17f0119 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# exit if any test fails
set -e

# update checksums
cd js
grunt js-unit
cd ..

phpunit -c phpunit.xml
phpunit -c phpunit.integration.xml

python3 bin/tools/generate_authors.py
git add AUTHORS.md