mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f2c968fdb8
Generate `//index.d.ts` file with precise typescript definitions for all of the Puppeteer API.
19 lines
360 B
YAML
19 lines
360 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 &&
|
|
npm run test-types
|
|
) else (
|
|
npm run unit-node6
|
|
)
|