forked from microsoft/vscode-node-debug2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
39 lines (35 loc) · 922 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
environment:
matrix:
- nodejs_version: 6.2
- nodejs_version: 6.3
# --inspect crashes in .4 and .5. https://github.com/nodejs/node/issues/8155
- nodejs_version: 6.6
- nodejs_version: 6.7
- nodejs_version: 6.9
- nodejs_version: 6.10
- nodejs_version: 7.0
- nodejs_version: 7.3
- nodejs_version: 7.9.0
- nodejs_version: 8.0.0
- nodejs_version: 8.1.2
matrix:
allow_failures:
- nodejs_version: 6.2
- nodejs_version: 6.3
- nodejs_version: 6.6
- nodejs_version: 6.7
install:
- ps: >
if ($env:nodejs_version -eq 6.2) {
Install-Product node $env:nodejs_version x64
npm i -g node-nightly
node-nightly
} else {
# --inspect crashes in x64 https://github.com/nodejs/node/issues/8155
Install-Product node $env:nodejs_version x86
}
build_script:
- npm install
- npm run build
test_script:
- npm test