Skip to content

Commit

Permalink
chore(ci): add circle ci (#1188)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Mar 3, 2020
1 parent 31e26a2 commit bccdaec
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
@@ -0,0 +1,26 @@
version: 2
jobs:
build:
docker:
- image: aslushnikov/playwright
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

0 comments on commit bccdaec

Please sign in to comment.