diff --git a/.circleci/config.yml b/.circleci/config.yml index 9bc16987..bda701c3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: @@ -14,7 +16,6 @@ jobs: analyse: executor: name: rn/linux_js - node_version: '20.11' steps: - attach_workspace: at: . @@ -35,7 +36,6 @@ 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 .." @@ -43,7 +43,6 @@ workflows: - 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 .."