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