aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/travis.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/travis.sh')
-rwxr-xr-xscripts/travis.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh
new file mode 100755
index 000000000..e919f18a4
--- /dev/null
+++ b/scripts/travis.sh
@@ -0,0 +1,23 @@
1#!/bin/bash
2
3if [ $# -eq 0 ]; then
4 echo "Need test suite argument."
5 exit -1
6fi
7
8if [ "$1" = "build_then_client" ]; then
9 npm run build
10 mocha --exit --require ts-node/register --bail server/tests/client.ts
11elif [ "$1" = "client" ]; then
12 mocha --exit --require ts-node/register --bail server/tests/client.ts
13elif [ "$1" = "api" ]; then
14 mocha --exit --require ts-node/register --bail server/tests/api/index.ts
15elif [ "$1" = "cli" ]; then
16 mocha --exit --require ts-node/register --bail server/tests/cli/index.ts
17elif [ "$1" = "lint" ]; then
18 cd client || exit -1
19 npm run lint || exit -1
20
21 cd .. || exit -1
22 npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" || exit -1
23fi