2017-06-28 13:57:58 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-01-27 14:54:29 +00:00
|
|
|
export PATH=./scripts:$PATH
|
|
|
|
|
2017-06-28 13:57:58 +00:00
|
|
|
docker --version
|
|
|
|
docker-compose --version
|
2018-08-09 20:24:02 +00:00
|
|
|
echo "node `node -v`"
|
|
|
|
echo "npm `npm -v`"
|
2017-06-28 13:57:58 +00:00
|
|
|
|
|
|
|
# Run unit tests
|
2019-02-22 09:27:54 +00:00
|
|
|
authelia-scripts unittest
|
|
|
|
|
2019-01-27 14:54:29 +00:00
|
|
|
# Build
|
|
|
|
authelia-scripts build
|
2017-06-28 13:57:58 +00:00
|
|
|
|
2019-02-23 22:27:34 +00:00
|
|
|
# Run integration tests
|
|
|
|
authelia-scripts test --headless test/suites/**/*.ts
|
|
|
|
|
2017-06-28 13:57:58 +00:00
|
|
|
# Test npm deployment before actual deployment
|
2019-02-11 22:23:40 +00:00
|
|
|
# ./scripts/npm-deployment-test.sh
|