dcff850b6f
This patch: - updates Flakiness Dashboard format to define version per-build and to pass COMMIT information - drops the README.md generation - we'll move on to a designated flakiness dashboard viewer
24 lines
735 B
YAML
24 lines
735 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "6.12.3"
|
|
FLAKINESS_DASHBOARD_NAME: Appveyor Chromium (Win + node6)
|
|
- nodejs_version: "8.11.3"
|
|
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/branch/master/job/$env:APPVEYOR_JOB_ID"
|
|
- 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
|
|
)
|