diff options
-rw-r--r-- | .circleci/config.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index f8b4fcc9..cb672ff3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2.1 # Invoke the react-native orb. orbs: - rn: react-native-community/react-native@5.0.0 + react-native: react-native-community/react-native@5.1.0 # Define runnable jobs. jobs: @@ -13,8 +13,8 @@ jobs: steps: - checkout - persist_to_workspace: - root: . paths: . + root: . # Run linter, type-checker, and tests. analyze_code: executor: rn/linux_js @@ -23,14 +23,14 @@ jobs: at: . - rn/yarn_install - run: - name: Run ESLint (`yarn lint`) command: yarn lint + name: Run ESLint (`yarn lint`) - run: - name: Run TSC (`yarn type`) command: yarn type + name: Run TSC (`yarn type`) - run: - name: Run Jest (`yarn test`) command: yarn test + name: Run Jest (`yarn test`) # Define workflows. workflows: @@ -39,7 +39,8 @@ workflows: jobs: - checkout_code - analyze_code: - requires: -checkout_code + requires: + - checkout_code - rn/ios_build: name: build_ios_release project_path: ios/Frontend.xcodeproj |