-
Notifications
You must be signed in to change notification settings - Fork 26
/
appveyor.yml
40 lines (32 loc) · 907 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
# http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
version: "{build}"
# What combinations to test
environment:
matrix:
- nodejs_version: "8"
platform: x86
- nodejs_version: "10"
platform: x86
- nodejs_version: "12"
platform: x86
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: >-
if ($env:nodejs_version -eq "0.10") {
npm -g install npm@2
$env:PATH="$env:APPDATA\npm;$env:PATH"
}
- npm install
test_script:
# Output useful info for debugging
- node --version && npm --version
# We test multiple Windows shells because of prior stdout buffering issues
# filed against Grunt. https://github.com/joyent/node/issues/3584
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
- cmd: npm test
build: off
matrix:
fast_finish: true
cache:
- node_modules -> package.json