2017-07-05 06:26:25 -05:00
|
|
|
#!/bin/bash
|
2016-04-30 04:17:50 -05:00
|
|
|
|
2017-06-25 06:51:19 -05:00
|
|
|
npm run build:server
|
|
|
|
|
2016-04-30 04:17:50 -05:00
|
|
|
cd client || exit -1
|
2017-04-26 14:52:49 -05:00
|
|
|
npm test || exit -1
|
2016-04-30 04:17:50 -05:00
|
|
|
|
|
|
|
cd .. || exit -1
|
2017-07-05 06:26:25 -05:00
|
|
|
npm run tslint -- --type-check --project ./tsconfig.json -c ./tslint.json server.ts "server/**/*.ts" || exit -1
|
2017-06-24 03:37:43 -05:00
|
|
|
mocha --bail server/tests
|