blob: 62625111289291c889cf66162b412d852fafa816 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001# appveyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4# branches to build
5branches:
6 # whitelist
7 only:
8 - master
9
10# build version format
11version: "{build}"
12
13# what combinations to test
14environment:
15 matrix:
16 - nodejs_version: 5
17 - nodejs_version: 4
18 - nodejs_version: 0.12
19
20# Get the latest stable version of Node 0.STABLE.latest
21install:
22 - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
23 - npm install
24
25build: off
26
27test_script:
28 - node --version
29 - npm --version
30 - cmd: npm test