UNPKG

395 BYAMLView Raw
1# Test against the latest version of this Node.js version
2environment:
3 nodejs_version: "8"
4
5install:
6 # Get the latest stable version of Node.js
7 - ps: Install-Product node $env:nodejs_version
8 - npm install -g grunt-cli
9 - npm install
10
11test_script:
12 # Output useful info for debugging.
13 - node --version
14 - npm --version
15 # run tests
16 - npm test
17
18# Don't actually build.
19build: off