Merge pull request #8 from sharelatex/bg-upgrade-to-node-6x

upgrade to node 6.9.5
This commit is contained in:
Brian Gough
2017-10-24 11:11:23 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
4.2.1
6.9.5
+2 -2
View File
@@ -11,7 +11,7 @@ pipeline {
stage('Install') {
agent {
docker {
image 'node:4.2.1'
image 'node:6.9.5'
args "-v /var/lib/jenkins/.npm:/tmp/.npm -e HOME=/tmp"
reuseNode true
}
@@ -28,7 +28,7 @@ pipeline {
stage('Compile and Test') {
agent {
docker {
image 'node:4.2.1'
image 'node:6.9.5'
reuseNode true
}
}