78ebf401c2
Node 8 is the current LTS. We should use it by default on all our CIs.
18 lines
332 B
YAML
18 lines
332 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "6.12.3"
|
|
- nodejs_version: "8.11.3"
|
|
|
|
build: off
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
- if "%nodejs_version%" == "8.11.3" (
|
|
npm run lint &&
|
|
npm run coverage &&
|
|
npm run test-doclint
|
|
) else (
|
|
npm run unit-node6
|
|
)
|