UNPKG

360 BYAMLView Raw
1environment:
2 matrix:
3 - nodejs_version: "6.12.3"
4 - nodejs_version: "8.11.3"
5
6build: off
7
8install:
9 - ps: Install-Product node $env:nodejs_version
10 - npm install
11 - if "%nodejs_version%" == "8.11.3" (
12 npm run lint &&
13 npm run coverage &&
14 npm run test-doclint &&
15 npm run test-types
16 ) else (
17 npm run unit-node6
18 )