playwright/.circleci/config.yml

26 lines
516 B
YAML
Raw Normal View History

2020-03-03 05:34:24 +03:00
version: 2
jobs:
build:
docker:
- image: mcr.microsoft.com/playwright:dev
2020-03-03 05:34:24 +03:00
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "browsers.json" }}
2020-03-03 05:34:24 +03:00
- run:
command: npm ci
2020-03-03 05:34:24 +03:00
- run:
command: npm run build
2020-03-03 05:34:24 +03:00
- save_cache:
key: dependency-cache-{{ checksum "browsers.json" }}
2020-03-03 05:34:24 +03:00
paths:
- $HOME/.cache/ms-playwright
2020-03-03 05:34:24 +03:00
- run:
command: |
xvfb-run --auto-servernum npm run test