UNPKG

585 BYAMLView Raw
1version: "{build}"
2os: Windows Server 2012 R2
3
4# Test against this version of Node.js
5environment:
6 matrix:
7 - nodejs_version: "0.12"
8 - nodejs_version: "4.2"
9 - nodejs_version: "5.0"
10
11# Install scripts. (runs after repo cloning)
12install:
13 # Get the latest stable version of Node.js or io.js
14 - ps: Install-Product node $env:nodejs_version
15 # install modules
16 - npm install
17
18# Post-install test scripts.
19test_script:
20 # Output useful info for debugging.
21 - node --version
22 - npm --version
23 # run tests
24 - npm test
25
26# Don't actually build or deploy.
27build: off
28deploy: off