forked from microsoft/vscode-node-debug2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
40 lines (36 loc) · 914 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
40
environment:
matrix:
- nodejs_version: 6.2
# Note: --inspect crashes in .4 and .5, and in x64 before 6.8. https://github.com/nodejs/node/issues/8155
- nodejs_version: 6.11
- nodejs_version: 7.0
- nodejs_version: 7.3
- nodejs_version: 7.10
- nodejs_version: 8.0
- nodejs_version: 8.1
- nodejs_version: 8.4
- nodejs_version: 8.7
- nodejs_version: 8.8
- nodejs_version: 8.9
- nodejs_version: 9.0
- nodejs_version: 9.1
- nodejs_version: 9.2
- nodejs_version: 9.3
matrix:
allow_failures:
- nodejs_version: 6.2
install:
- ps: >
if ($env:nodejs_version -eq 6.2) {
Install-Product node $env:nodejs_version x64
npm i -g node-nightly
node-nightly
} else {
Install-Product node $env:nodejs_version x64
}
build_script:
- npm install
- npm run build
test_script:
- npm test
- npm run package