You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: appveyor.yml
+31-11Lines changed: 31 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@ build: off
4
4
5
5
environment:
6
6
matrix:
7
+
- nodejs_version: "15"
8
+
- nodejs_version: "14"
9
+
- nodejs_version: "13"
7
10
- nodejs_version: "12"
8
11
- nodejs_version: "11"
9
12
- nodejs_version: "10"
@@ -25,6 +28,7 @@ matrix:
25
28
allow_failures:
26
29
- nodejs_version: "5"# due to windows npm bug, registry-side
27
30
- nodejs_version: "0.8"
31
+
# platform: x86 # x64 has started failing on the registry side, around early November 2020
28
32
- nodejs_version: "0.6"
29
33
30
34
platform:
@@ -33,17 +37,33 @@ platform:
33
37
34
38
# Install scripts. (runs after repo cloning)
35
39
install:
36
-
# Fix symlinks in working copy (see https://github.com/appveyor/ci/issues/650#issuecomment-186592582) / https://github.com/charleskorn/batect/commit/d08986802ec43086902958c4ee7e57ff3e71dbef
37
-
- git config core.symlinks true
38
-
- git reset --hard
39
-
# Get the latest stable version of Node.js or io.js
- IF %nodejs_version% EQU 0.6 npm config set strict-ssl false && npm -g install npm@1.3
42
-
- IF %nodejs_version% EQU 0.8 npm config set strict-ssl false && npm -g install npm@1.4.28 && npm install -g npm@4.5
43
-
- set PATH=%APPDATA%\npm;%PATH%
44
-
#- IF %nodejs_version% NEQ 0.6 AND %nodejs_version% NEQ 0.8 npm -g install npm
45
-
# install modules
46
-
- npm install
40
+
# Fix symlinks in working copy (see https://github.com/appveyor/ci/issues/650#issuecomment-186592582) / https://github.com/charleskorn/batect/commit/d08986802ec43086902958c4ee7e57ff3e71dbef
41
+
- git config core.symlinks true
42
+
- git reset --hard
43
+
# Get the latest stable version of Node.js or io.js
0 commit comments