Skip to content

Commit

Permalink
update toolchain to use Node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey committed Jul 2, 2019
1 parent fee9d32 commit d10eb2d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ branches:

language: node_js
node_js:
- '10'
- '12'

cache:
yarn: true
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '12.x'
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
inputs:
versionSpec: '1.5.1'
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '12.x'
- script: |
yarn install --force
name: Install
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
sudo apt-get install -y --no-install-recommends libsecret-1-dev
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '12.x'
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
inputs:
versionSpec: '1.5.1'
Expand Down
2 changes: 1 addition & 1 deletion script/docker/snapcraft.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM snapcore/snapcraft
RUN apt -qq update
RUN apt -qq install --yes curl gnupg

RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list

Expand Down
2 changes: 1 addition & 1 deletion script/docker/trusty.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN apt-get install --quiet --yes \
RUN add-apt-repository ppa:git-core/ppa

# install the latest LTS version of Node
RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -

# install the latest version of Yarn
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
Expand Down

0 comments on commit d10eb2d

Please sign in to comment.