mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f2b6016354
This patch: - migrates CI to use NPM - drops lockfiles (`yarn.lock`). Lockfiles are ignored by package managers when the package is installed as a dependency, so this makes CI closer to the installation our clients run.
18 lines
334 B
YAML
18 lines
334 B
YAML
environment:
|
|
matrix:
|
|
- nodejs_version: "6"
|
|
- nodejs_version: "7"
|
|
|
|
build: off
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version
|
|
- npm install
|
|
- if "%nodejs_version%" == "7" (
|
|
npm run lint &&
|
|
npm run coverage &&
|
|
npm run test-doclint
|
|
) else (
|
|
npm run unit-node6
|
|
)
|