element-web/jenkins.sh

33 lines
655 B
Bash
Raw Normal View History

2016-02-25 14:18:26 +00:00
#!/bin/bash
set -e
2017-02-17 19:27:50 +00:00
export NVM_DIR="$HOME/.nvm"
2016-02-25 14:18:26 +00:00
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
nvm use 10
2016-02-25 14:18:26 +00:00
set -x
# install the other dependencies
npm install
2018-05-02 14:53:38 +00:00
scripts/fetchdep.sh matrix-org matrix-js-sdk
2018-05-02 15:49:08 +00:00
rm -r node_modules/matrix-js-sdk || true
2018-05-02 14:53:38 +00:00
ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
(cd matrix-js-sdk && npm install)
2016-03-28 22:37:00 +00:00
# run the mocha tests
npm run test -- --no-colors
2016-03-28 22:37:00 +00:00
2016-07-01 18:38:14 +00:00
# run eslint
2017-01-23 15:41:33 +00:00
npm run lintall -- -f checkstyle -o eslint.xml || true
2016-07-01 18:38:14 +00:00
# re-run the linter, excluding any files known to have errors or warnings.
npm run lintwithexclusions
# delete the old tarball, if it exists
rm -f matrix-react-sdk-*.tgz
2016-02-25 14:18:26 +00:00
# build our tarball
npm pack