playwright/.circleci/config.yml
2020-03-12 18:25:07 -07:00

25 lines
521 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 test