2016-02-25 17:18:26 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
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"
|
2018-11-21 21:53:18 +03:00
|
|
|
nvm use 10
|
2016-02-25 17:18:26 +03:00
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
# install the other dependencies
|
|
|
|
npm install
|
|
|
|
|
2018-05-02 17:53:38 +03:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
2018-05-02 18:49:08 +03:00
|
|
|
rm -r node_modules/matrix-js-sdk || true
|
2018-05-02 17:53:38 +03:00
|
|
|
ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
|
|
|
|
(cd 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
|
2017-07-12 00:54:18 +03:00
|
|
|
npm run test -- --no-colors
|
2016-03-29 01:37:00 +03:00
|
|
|
|
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
|
|
|
|
2017-06-08 15:52:52 +03:00
|
|
|
# re-run the linter, excluding any files known to have errors or warnings.
|
2017-09-28 13:21:06 +03:00
|
|
|
npm run lintwithexclusions
|
2017-06-08 15:52:52 +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
|