Skip to content

Commit 7f128a4

Browse files
committed
add circleci config
1 parent 9a675cc commit 7f128a4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2.1
2+
3+
orbs:
4+
node: circleci/[email protected]
5+
puppeteer: threetreeslight/[email protected]
6+
7+
jobs:
8+
run-tests:
9+
environment:
10+
NODE_ENV: development
11+
docker:
12+
- image: circleci/node:latest-browsers
13+
steps:
14+
- checkout
15+
- node/install-packages
16+
- puppeteer/install
17+
- run:
18+
name: Run tests
19+
command: npm test
20+
21+
workflows:
22+
test:
23+
jobs:
24+
- run-tests

0 commit comments

Comments
 (0)