UNPKG

286 BYAMLView Raw
1environment:
2 nodejs_version: "8"
3
4install:
5 # update to latest version of npm for Windows fixes.
6 - npm install --global npm@latest
7 # install modules
8 - npm install
9
10test_script:
11 - node --version
12 - npm --version
13 # run tests
14 - npm test
15
16# Don't actually build.
17build: off