Skip to content

Commit

Permalink
fix(ci): switch to nodejs v10.11.0
Browse files Browse the repository at this point in the history
Jenkins does not work with v10.13.0 yet
  • Loading branch information
lidel committed Dec 6, 2018
1 parent 9cd4bdc commit 687a4d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10.13.0
FROM node:10.11.0
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ENV PATH="/usr/src/app/node_modules/.bin:${PATH}"
Expand Down
2 changes: 1 addition & 1 deletion ci/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import groovy.transform.Field
// Global for which node version to use on macos and windows
// This should match image version from Dockerfile
@Field final String nodeVersion = '10.13.0'
@Field final String nodeVersion = '10.11.0'

// Run targets in parallel
timeout(time: 1, unit: 'HOURS') { parallel(
Expand Down

0 comments on commit 687a4d8

Please sign in to comment.