mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
8fa034bf2f
We're not using it at all so might as well cut down on code in the codebase.
16 lines
293 B
YAML
16 lines
293 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "10.18.1"
|
|
|
|
build: off
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
- if "%nodejs_version%" == "10.18.1" (
|
|
npm run lint &&
|
|
npm run coverage &&
|
|
npm run test-doclint &&
|
|
npm run test-types
|
|
)
|