mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
d8ff186303
Client and server now have their own tsconfig so that the transpilation is only done on the part that is being modified. It also allows faster transpilation since tests are now excluded from tsconfig. They are compiled by ts-node during unit tests execution.
19 lines
304 B
Bash
Executable File
19 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
docker --version
|
|
docker-compose --version
|
|
|
|
# Run unit tests
|
|
grunt test-unit
|
|
|
|
# Build the app from Typescript and package
|
|
grunt build-dist
|
|
|
|
# Run integration/example tests
|
|
./scripts/integration-tests.sh
|
|
|
|
# Test npm deployment before actual deployment
|
|
./scripts/npm-deployment-test.sh
|