Skip to content

Commit 4e20db7

Browse files
authored
Revert "Removed circle CI (#4236)" (#4253)
This reverts commit e347b73.
1 parent e1dcbff commit 4e20db7

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.circleci/config.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:12
6+
steps:
7+
- checkout
8+
- restore_cache:
9+
keys:
10+
- dependencies-{{ checksum "yarn.lock" }}
11+
- run:
12+
name: Install
13+
command: yarn install --pure-lockfile
14+
- save_cache:
15+
paths:
16+
- node_modules
17+
key: dependencies-{{ checksum "yarn.lock" }}
18+
- run:
19+
name: Check Prettier, ESLint, Flow
20+
command: yarn ci-check

0 commit comments

Comments
 (0)