Revision 029fbfc7e0851b4dfcf60e63fc1a4e869c63e74b authored by Ron Buckton on 06 October 2017, 20:18:16 UTC, committed by Ron Buckton on 06 October 2017, 20:18:16 UTC
1 parent afa4842
Raw File
jenkins.sh
#!/usr/bin/env bash

# Set up NVM
export NVM_DIR="/home/dotnet-bot/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"

nvm install $1

npm uninstall typescript --no-save
npm uninstall tslint --no-save
npm install
npm update
npm test
back to top