2018-03-13 14:44:14 +00:00
|
|
|
environment:
|
|
|
|
matrix:
|
2020-03-10 20:55:32 +00:00
|
|
|
- nodejs_version: "10.18.1"
|
2018-03-13 14:44:14 +00:00
|
|
|
|
|
|
|
build: off
|
|
|
|
|
|
|
|
install:
|
|
|
|
- ps: Install-Product node $env:nodejs_version
|
|
|
|
- npm install
|
2020-03-10 20:55:32 +00:00
|
|
|
- if "%nodejs_version%" == "10.18.1" (
|
2018-03-13 14:44:14 +00:00
|
|
|
npm run lint &&
|
|
|
|
npm run coverage &&
|
2019-01-28 23:12:45 +00:00
|
|
|
npm run test-doclint &&
|
|
|
|
npm run test-types
|
2018-03-13 14:44:14 +00:00
|
|
|
)
|