Skip to content

Commit

Permalink
[Circle CI] Fix: Error can't find ./android
Browse files Browse the repository at this point in the history
  • Loading branch information
guhungry committed Mar 8, 2024
1 parent b288c15 commit 89a1154
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,19 @@ jobs:
node_version: '20.11'
steps:
- checkout
- rn/yarn_install
- rn/yarn_install:
yarn_install_directory: 'example'
- persist_to_workspace:
root: .
paths: .
analyse:
executor:
name: rn/linux_js
node_version: '20.11'
steps:
- attach_workspace:
at: .
- rn/yarn_install
- run:
name: Lint JS Code (ESLint)
command: yarn run lint
Expand All @@ -36,15 +39,17 @@ workflows:
- checkout_code
- rn/android_build:
name: build_android_debug
project_path: "example/android"
attach_workspace: true
workspace_root: "example"
workspace_root: '.'
build_type: debug
requires:
- analyse
- rn/android_build:
name: build_android_release
project_path: "example/android"
attach_workspace: true
workspace_root: "example"
workspace_root: '.'
build_type: release
requires:
- analyse
Expand Down

0 comments on commit 89a1154

Please sign in to comment.