Skip to content

Commit c4aaa15

Browse files
authored
Merge pull request reactjs#131 from jxom/add-circle-ci-config
Add CircleCI config
2 parents 2883359 + 086322a commit c4aaa15

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.circleci/config.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:latest
6+
steps:
7+
- checkout
8+
- restore_cache:
9+
keys:
10+
- dependencies-{{ checksum "package.json" }}
11+
# fallback to using the latest cache if no exact match is found
12+
- dependencies-
13+
- run:
14+
name: Install
15+
command: yarn install
16+
- save_cache:
17+
paths:
18+
- node_modules
19+
key: dependencies-{{ checksum "package.json" }}
20+
- run:
21+
name: Check Prettier, ESLint, Flow
22+
command: yarn ci-check

0 commit comments

Comments
 (0)