From 93b9ac004c408911c2a9948050b76595dbfe17d8 Mon Sep 17 00:00:00 2001 From: Woraphot Chokratanasombat Date: Fri, 8 Mar 2024 12:51:16 +0700 Subject: [PATCH] [Circle CI] Fix: Error can't find ./android --- .circleci/config.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ff25fba..3ad92aa3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -36,18 +39,18 @@ workflows: - checkout_code - rn/android_build: name: build_android_debug - attach_workspace: true - workspace_root: "example" + project_path: "example/android" build_type: debug requires: - analyse + build_image_version: 'latest' - rn/android_build: name: build_android_release - attach_workspace: true - workspace_root: "example" + project_path: "example/android" build_type: release requires: - analyse + build_image_version: 'latest' # - rn/android_test: # detox_configuration: "android.emu.release" # detox_loglevel: "trace"