2016-02-25 15:18:26 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
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"
|
2018-11-21 19:53:18 +01:00
|
|
|
nvm use 10
|
2016-02-25 15:18:26 +01:00
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2019-03-11 19:08:37 +01:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
|
|
|
|
|
|
|
pushd matrix-js-sdk
|
|
|
|
yarn link
|
2019-03-11 15:22:02 +01:00
|
|
|
yarn install
|
2019-03-11 19:08:37 +01:00
|
|
|
popd
|
2016-02-25 15:18:26 +01:00
|
|
|
|
2019-03-11 19:08:37 +01:00
|
|
|
yarn link matrix-js-sdk
|
|
|
|
|
|
|
|
# install the other dependencies
|
|
|
|
yarn install
|
2017-01-11 18:18:37 +01:00
|
|
|
|
2016-03-29 00:37:00 +02:00
|
|
|
# run the mocha tests
|
2019-03-11 15:22:02 +01:00
|
|
|
yarn test --no-colors
|
2016-03-29 00:37:00 +02:00
|
|
|
|
2016-07-01 20:38:14 +02:00
|
|
|
# run eslint
|
2019-03-11 15:22:02 +01:00
|
|
|
yarn 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.
|
2019-03-11 15:22:02 +01:00
|
|
|
yarn lintwithexclusions
|
2017-06-08 14:52:52 +02:00
|
|
|
|
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
|
2019-03-11 15:22:02 +01:00
|
|
|
yarn pack
|