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