Change to Node 6

This commit is contained in:
Shane Kilkelly 2018-04-26 10:24:59 +01:00
parent dd7386bb54
commit f0495d8ec6
3 changed files with 4 additions and 4 deletions

View file

@ -1 +1 @@
8.11.1
6.14.1

View file

@ -11,7 +11,7 @@ pipeline {
stage('Install') {
agent {
docker {
image 'node:8.11.1'
image 'node:6.14.1'
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:8.11.1'
image 'node:6.14.1'
reuseNode true
}
}

View file

@ -39,6 +39,6 @@
"sinon": "~3.2.1"
},
"engines": {
"node": "~8.11.1"
"node": "~6.14.1"
}
}