Revision 3dc754aa7d87971ff6965bc6c6b5af5869457ee8 authored by Mohamed Hegazy on 09 March 2018, 22:42:37 UTC, committed by GitHub on 09 March 2018, 22:42:37 UTC
2 parent s fa2b7ff + b6e83cd
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