Skip to content

Commit 8c16446

Browse files
committed
revert: circle ci removal
This reverts commit 3d26c68.
1 parent 3d26c68 commit 8c16446

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.circleci/config.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
version: 2
2+
3+
step_restore_cache: &restore_cache
4+
restore_cache:
5+
keys:
6+
- v1-dependencies-{{ checksum "yarn.lock" }}-1
7+
- v1-dependencies-
8+
9+
step_install_deps: &install_deps
10+
run:
11+
name: Install Dependencies
12+
command: yarn --frozen-lockfile
13+
14+
step_save_cache: &save_cache
15+
save_cache:
16+
paths:
17+
- node_modules
18+
- ~/.cache/yarn
19+
key: v1-dependencies-{{ checksum "yarn.lock" }}-1
20+
21+
jobs:
22+
test:
23+
docker:
24+
- image: circleci/node:12
25+
steps:
26+
- checkout
27+
- *restore_cache
28+
- *install_deps
29+
- *save_cache
30+
- run: yarn test
31+
32+
workflows:
33+
version: 2
34+
ci:
35+
jobs:
36+
- test

0 commit comments

Comments
 (0)