Skip to content

Commit

Permalink
[Circle CI] Fix: Remove node_version: '20.11' at wrong places
Browse files Browse the repository at this point in the history
  • Loading branch information
guhungry committed Feb 23, 2024
1 parent 21f19ad commit b26e8bb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ orbs:

jobs:
checkout_code:
executor: rn/linux_js
executor:
name: rn/linux_js
node_version: '20.11'
steps:
- checkout
- persist_to_workspace:
Expand All @@ -14,7 +16,6 @@ jobs:
analyse:
executor:
name: rn/linux_js
node_version: '20.11'
steps:
- attach_workspace:
at: .
Expand All @@ -35,15 +36,13 @@ workflows:
- checkout_code
- rn/android_build:
name: build_android_debug
node_version: '20.11'
project_path: "example/android"
build_type: debug
on_after_initialize: "cd example && yarn install --frozen-lockfile --non-interactive --cache-folder /tmp/yarn && cd .."
requires:
- analyse
- rn/android_build:
name: build_android_release
node_version: '20.11'
project_path: "example/android"
build_type: release
on_after_initialize: "cd example && yarn install --frozen-lockfile --non-interactive --cache-folder /tmp/yarn && cd .."
Expand Down

0 comments on commit b26e8bb

Please sign in to comment.