UNPKG

587 BYAMLView Raw
1environment:
2 matrix:
3 - nodejs_version: "10"
4 - nodejs_version: "9"
5 - nodejs_version: "8"
6 - nodejs_version: "6"
7 - nodejs_version: "4"
8 - nodejs_version: "0.12"
9 - nodejs_version: "0.10"
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.
27build: off