We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2b7e1f commit ea4b803Copy full SHA for ea4b803
.circleci/config.yml
@@ -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
16
17
+ - attach_workspace:
18
+ at: .
19
+ - rn/yarn_install
20
+ - run:
21
+ name: Lint JS Code (ESLint)
22
+ command: yarn run lint
23
24
+ name: Flow
25
+ command: yarn run flow
26
27
+workflows:
28
+ test:
29
+ jobs:
30
+ - checkout_code
31
+ - analyse:
32
+ requires:
33
0 commit comments