diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-04-24 20:33:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 20:33:53 -0400 |
commit | 6bece270b2719a66b564a411fc28c3b32ae0b105 (patch) | |
tree | 3d05271e24374472026692b911bb1b64a8d77f04 | |
parent | d68b44b6b2fad6c321aa01a039030bb98c5be88d (diff) |
Upgrade CI to Node v12 (#2193)
-rw-r--r-- | .appveyor.yml | 1 | ||||
-rw-r--r-- | .travis.yml | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 60f1490fd..236a954ca 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -130,6 +130,7 @@ install: $env:DEPOT_TOOLS_WIN_TOOLCHAIN = "0" # Install a recent Node.js version. + # TODO(ry) Upgrade to v12 once Install-Produce supports it. - ps: Install-Product -Product node -Version 10 -Platform x64 # Make sure the right Python version is in PATH, and others are not. diff --git a/.travis.yml b/.travis.yml index 8f23f11ba..3487c57a7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,8 +33,8 @@ install: # Because prebuilt/ is cached, we need to manually reset changes that might # happen to the sha1 files here. - git checkout -- prebuilt -- nvm install v10 -- nvm use --delete-prefix v10 +- nvm install v12 +- nvm use --delete-prefix v12 - node -v - |- # Install Rust. |