element-web/jenkins.sh

26 lines
402 B
Bash
Raw Normal View History

2016-02-25 15:18:26 +01:00
#!/bin/bash
set -e
export KARMAFLAGS="--no-colors"
2016-02-25 15:18:26 +01:00
export NVM_DIR="/home/jenkins/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
nvm use 4
set -x
# install the other dependencies
npm install
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
npm run lint -- -f checkstyle -o eslint.xml || true
# 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