Skip to content

Commit fa700e3

Browse files
committed
add circleci
1 parent 8e7dc03 commit fa700e3

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.circleci/config.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:10.9.0-browsers
6+
7+
working_directory: ~/repo
8+
9+
steps:
10+
- checkout
11+
- restore_cache:
12+
keys:
13+
- v1-dependencies-{{ checksum "package.json" }}
14+
15+
# fall back to using the latest cache if no exact match is found
16+
- v1-dependencies-
17+
18+
# Install your dependencies
19+
- run: yarn install
20+
21+
- save_cache:
22+
paths:
23+
- node_modules
24+
key: v1-dependencies-{{ checksum "package.json" }}
25+
26+
# build the extension if required
27+
# Run our test suite
28+
- run: yarn test

0 commit comments

Comments
 (0)