mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-13 02:21:10 +03:00
27 lines
626 B
YAML
27 lines
626 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: aslushnikov/playwright:bionic
|
|
steps:
|
|
- checkout
|
|
|
|
- restore_cache:
|
|
key: dependency-cache-{{ checksum "package.json" }}
|
|
|
|
- run:
|
|
command: npm install
|
|
|
|
- save_cache:
|
|
key: dependency-cache-{{ checksum "package.json" }}
|
|
paths:
|
|
- ./.local-chromium
|
|
- ./.local-firefox
|
|
- ./.local-webkit
|
|
|
|
- run:
|
|
command: |
|
|
xvfb-run --auto-servernum npm run ctest
|
|
xvfb-run --auto-servernum npm run ftest
|
|
xvfb-run --auto-servernum npm run wtest
|