Skip to content

Commit 9e45410

Browse files
author
Javier Morant
authored
Merge pull request #16 from fjmorant/ciCircleConf
Configure Circle CI to check lint and flow errors
2 parents ad2deb9 + 63ed54b commit 9e45410

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.circleci/config.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:7.10.0
6+
steps:
7+
- checkout
8+
- run: yarn install
9+
- run: yarn lint
10+
- run: yarn flow
11+
- run: yarn add react@16.0.0
12+
- run: yarn add react-native@0.49.3
13+
- run: yarn test

0 commit comments

Comments
 (0)