Skip to content

Commit bccdaec

Browse files
authored
chore(ci): add circle ci (#1188)
1 parent 31e26a2 commit bccdaec

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.circleci/config.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: aslushnikov/playwright
6+
steps:
7+
- checkout
8+
9+
- restore_cache:
10+
key: dependency-cache-{{ checksum "package.json" }}
11+
12+
- run:
13+
command: npm install
14+
15+
- save_cache:
16+
key: dependency-cache-{{ checksum "package.json" }}
17+
paths:
18+
- ./.local-chromium
19+
- ./.local-firefox
20+
- ./.local-webkit
21+
22+
- run:
23+
command: |
24+
xvfb-run --auto-servernum npm run ctest
25+
xvfb-run --auto-servernum npm run ftest
26+
xvfb-run --auto-servernum npm run wtest

0 commit comments

Comments
 (0)