23 lines
371 B
Bash
Executable File
23 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export PATH=./scripts:$PATH
|
|
|
|
docker --version
|
|
docker-compose --version
|
|
echo "node `node -v`"
|
|
echo "npm `npm -v`"
|
|
|
|
# Build
|
|
authelia-scripts build
|
|
|
|
# Run unit tests
|
|
authelia-scripts unittest
|
|
|
|
# Run integration tests
|
|
authelia-scripts test --headless test/suites/**/*.ts
|
|
|
|
# Test npm deployment before actual deployment
|
|
# ./scripts/npm-deployment-test.sh
|