Skip to content

Commit

Permalink
ci(.travis.yml,appveyor.yml): Use current npm version in CI scripts (#…
Browse files Browse the repository at this point in the history
…3579)

The requirement for using npm-5.x was due to npm-6 dropping support for Node-4. Since Mocha now requires Node-6+, we should use the current verion of npm. This will also eliminate npm
"Unsupported Node version" warnings when run against Node-11+.
  • Loading branch information
plroebuck committed Nov 25, 2018
1 parent ee2ef44 commit 9f02180
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -21,7 +21,7 @@ addons:
before_install: |
[[ ! -x ~/npm/node_modules/.bin/npm ]] && {
# caching feature creates `~/npm` for us
cd ~/npm && npm install npm@^5
cd ~/npm && npm install npm
cd -
} || true
# avoids bugs around https://github.com/travis-ci/travis-ci/issues/5092
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -37,7 +37,7 @@ install:
- set PATH=%APPDATA%\npm;C:\MinGW\bin;%PATH%
- ps: Install-Product node $env:nodejs_version x64
- ps: Add-AppveyorMessage "Installing npm..."
- npm install -g npm@^5
- npm install -g npm
## Mocha-related package installs
- ps: Add-AppveyorMessage "Installing Mocha dependencies..."
- npm ci --ignore-scripts
Expand Down

0 comments on commit 9f02180

Please sign in to comment.