Skip to content

Commit

Permalink
fix(jenkinsfile): installs correct node version
Browse files Browse the repository at this point in the history
Closes DCOS_OSS-2186 and DCOS_OSS-1563
  • Loading branch information
Julian Gieseke authored and Daniel Schmidt committed Mar 1, 2018
1 parent b0b6a47 commit 9e09647
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ pipeline {
}
}

stage('Install Correct Node Version') {
steps {
ansiColor('xterm') {
sh 'npm install -g n'
sh 'n 8.9.4'
}
}
}

stage('Initialization') {
steps {
ansiColor('xterm') {
Expand Down

0 comments on commit 9e09647

Please sign in to comment.