diff options
-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. |