From e1136749e45dfafc3d777d17b200197b6b8cef21 Mon Sep 17 00:00:00 2001 From: Kacper Kafara Date: Fri, 6 Jan 2023 12:57:38 +0100 Subject: [PATCH] chore: unify CI between platforms (#1676) ## Description Make `ios-build-test-fabric` workflow build `FabricTestExample` instead of `FabricExample` This is done to unify behaviour between platforms as `android-build-test-fabric` builds `FabricTestExample`. ## Changes Edited working directory of workflow. ## Checklist - [x] Ensured that CI passes (cherry picked from commit f8dfd276463f7e011b9c4e2d15a2c0bbfd079e3e) --- .github/workflows/ios-build-test-fabric.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ios-build-test-fabric.yml b/.github/workflows/ios-build-test-fabric.yml index 78bf6c7b65..667c387385 100644 --- a/.github/workflows/ios-build-test-fabric.yml +++ b/.github/workflows/ios-build-test-fabric.yml @@ -10,7 +10,7 @@ on: - 'ios/**' - 'common/**' - 'src/fabric/**' - - 'FabricExample/**' + - 'FabricTestExample/**' push: branches: - main @@ -19,7 +19,7 @@ jobs: build: runs-on: macos-12 env: - WORKING_DIRECTORY: FabricExample + WORKING_DIRECTORY: FabricTestExample concurrency: group: ios-fabric-${{ github.ref }} cancel-in-progress: true @@ -32,7 +32,7 @@ jobs: with: node-version: 14 cache: 'yarn' - cache-dependency-path: 'FabricExample/yarn.lock' + cache-dependency-path: 'FabricTestExample/yarn.lock' - name: Install node dependencies working-directory: ${{ env.WORKING_DIRECTORY }}