We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95dbc2 commit c39d7d9Copy full SHA for c39d7d9
.travis.yml
@@ -9,7 +9,7 @@ node_js:
9
- "5.12"
10
- "6.14"
11
- "7.10"
12
- - "8.11"
+ - "8.12"
13
matrix:
14
include:
15
- node_js: "9"
appveyor.yml
@@ -9,11 +9,13 @@ environment:
- nodejs_version: "5.12"
- nodejs_version: "6.14"
- nodejs_version: "7.10"
- - nodejs_version: "8.11"
+ - nodejs_version: "8.12"
cache:
- node_modules
install:
16
- - ps: Install-Product node $env:nodejs_version
+ - ps: >-
17
+ try { Install-Product node $env:nodejs_version -ErrorAction Stop }
18
+ catch { Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) }
19
- npm config set shrinkwrap false
20
- npm rm --save-dev connect-redis
21
- if exist node_modules npm prune
0 commit comments