element-web/jenkins.sh

40 lines
621 B
Bash
Raw Normal View History

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"
nvm use 10
2016-02-25 17:18:26 +03:00
set -x
scripts/fetchdep.sh matrix-org matrix-js-sdk
pushd matrix-js-sdk
yarn link
yarn install
popd
2016-02-25 17:18:26 +03:00
yarn link matrix-js-sdk
# install the other dependencies
yarn install
2016-03-29 01:37:00 +03:00
# run the mocha tests
yarn test --no-colors
2016-03-29 01:37:00 +03:00
2016-07-01 21:38:14 +03:00
# run eslint
yarn lintall -f checkstyle -o eslint.xml || true
2016-07-01 21:38:14 +03:00
# re-run the linter, excluding any files known to have errors or warnings.
yarn lintwithexclusions
2019-04-09 17:08:04 +03:00
# lint styles
yarn stylelint
# delete the old tarball, if it exists
rm -f matrix-react-sdk-*.tgz
2016-02-25 17:18:26 +03:00
# build our tarball
yarn pack