2016-02-25 17:18:26 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2016-06-23 16:38:08 +03:00
|
|
|
export KARMAFLAGS="--no-colors"
|
2017-02-17 22:27:50 +03:00
|
|
|
export NVM_DIR="$HOME/.nvm"
|
2016-02-25 17:18:26 +03:00
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
|
|
|
|
nvm use 4
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
# install the other dependencies
|
|
|
|
npm install
|
|
|
|
|
2017-01-11 20:18:37 +03:00
|
|
|
# we may be using a dev branch of js-sdk in which case we need to build it
|
2017-01-12 19:38:48 +03:00
|
|
|
(cd node_modules/matrix-js-sdk && npm install)
|
2017-01-11 20:18:37 +03:00
|
|
|
|
2016-03-29 01:37:00 +03:00
|
|
|
# run the mocha tests
|
|
|
|
npm run test
|
|
|
|
|
2016-07-01 21:38:14 +03:00
|
|
|
# run eslint
|
2017-01-23 18:41:33 +03:00
|
|
|
npm run lintall -- -f checkstyle -o eslint.xml || true
|
2016-07-01 21:38:14 +03:00
|
|
|
|
2016-02-25 20:24:13 +03:00
|
|
|
# delete the old tarball, if it exists
|
|
|
|
rm -f matrix-react-sdk-*.tgz
|
|
|
|
|
2016-02-25 17:18:26 +03:00
|
|
|
# build our tarball
|
|
|
|
npm pack
|