mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
11ff374ca3
Node.js v6 was end-of-life'd in April, 2019, with AWS Lambda prohibiting updaets to the Node.js v6 runtime since June 30, 2019. This makes it quite safe for us to remove the Node 6 support from the repository.
20 lines
618 B
YAML
20 lines
618 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "8.16.0"
|
|
FLAKINESS_DASHBOARD_NAME: Appveyor Chromium (Win + node8)
|
|
FLAKINESS_DASHBOARD_PASSWORD:
|
|
secure: g66jP+j6C+hkXLutBV9fdxB5fRJgcQQzy93SgQzXUmcCl/RjkJwnzyHvX0xfCVnv
|
|
|
|
build: off
|
|
|
|
install:
|
|
- ps: $env:FLAKINESS_DASHBOARD_BUILD_URL="https://ci.appveyor.com/project/aslushnikov/puppeteer/builds/$env:APPVEYOR_BUILD_ID/job/$env:APPVEYOR_JOB_ID"
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
- if "%nodejs_version%" == "8.16.0" (
|
|
npm run lint &&
|
|
npm run coverage &&
|
|
npm run test-doclint &&
|
|
npm run test-types
|
|
)
|