Skip to content

Commit ea4b803

Browse files
Add CircleCI config
1 parent d2b7e1f commit ea4b803

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.circleci/config.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
version: 2.1
2+
3+
orbs:
4+
rn: react-native-community/[email protected]
5+
6+
jobs:
7+
checkout_code:
8+
executor: rn/linux_js
9+
steps:
10+
- checkout
11+
- persist_to_workspace:
12+
root: .
13+
paths: .
14+
analyse:
15+
executor: rn/linux_js
16+
steps:
17+
- attach_workspace:
18+
at: .
19+
- rn/yarn_install
20+
- run:
21+
name: Lint JS Code (ESLint)
22+
command: yarn run lint
23+
- run:
24+
name: Flow
25+
command: yarn run flow
26+
27+
workflows:
28+
test:
29+
jobs:
30+
- checkout_code
31+
- analyse:
32+
requires:
33+
- checkout_code

0 commit comments

Comments
 (0)