UNPKG

427 BYAMLView Raw
1# AppVeyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4# Build version format
5version: "{build}"
6
7# Fix line endings on Windows
8init:
9 - git config --global core.autocrlf true
10
11# What combinations to test
12environment:
13 matrix:
14 - nodejs_version: "0.10"
15 - nodejs_version: "0.12"
16
17install:
18 - ps: Install-Product node $env:nodejs_version
19 - npm install
20
21build: off
22
23test_script:
24 - npm version
25 - cmd: npm test
\No newline at end of file