diff --git a/.github/workflows/android-build-test-fabric.yml b/.github/workflows/android-build-test-fabric.yml index eff2932060..112620512f 100644 --- a/.github/workflows/android-build-test-fabric.yml +++ b/.github/workflows/android-build-test-fabric.yml @@ -37,7 +37,7 @@ jobs: with: node-version: 18 cache: 'yarn' - cache-dependency-path: 'FabricExample/yarn.lock' + cache-dependency-path: ${{ env.WORKING_DIRECTORY }}/yarn.lock - name: Install node dependencies working-directory: ${{ env.WORKING_DIRECTORY }} run: yarn diff --git a/.github/workflows/android-build-test.yml b/.github/workflows/android-build-test.yml index d0444ef5f9..da7ce12970 100644 --- a/.github/workflows/android-build-test.yml +++ b/.github/workflows/android-build-test.yml @@ -37,7 +37,7 @@ jobs: cache: 'yarn' cache-dependency-path: | yarn.lock - Example/yarn.lock + ${{ env.WORKING_DIRECTORY }}/yarn.lock - name: Install dependencies run: yarn - name: Install Example app dependencies diff --git a/.github/workflows/ios-build-test-fabric.yml b/.github/workflows/ios-build-test-fabric.yml index bfbdc3a88c..2db8ca5fa0 100644 --- a/.github/workflows/ios-build-test-fabric.yml +++ b/.github/workflows/ios-build-test-fabric.yml @@ -33,7 +33,7 @@ jobs: with: node-version: 18 cache: 'yarn' - cache-dependency-path: 'FabricExample/yarn.lock' + cache-dependency-path: ${{ env.WORKING_DIRECTORY }}/yarn.lock - name: Use latest stable Xcode uses: maxim-lobanov/setup-xcode@v1 with: diff --git a/.github/workflows/ios-build-test.yml b/.github/workflows/ios-build-test.yml index 57367cacab..23f3d856be 100644 --- a/.github/workflows/ios-build-test.yml +++ b/.github/workflows/ios-build-test.yml @@ -31,7 +31,7 @@ jobs: with: node-version: 18 cache: 'yarn' - cache-dependency-path: 'Example/yarn.lock' + cache-dependency-path: ${{ env.WORKING_DIRECTORY }}/yarn.lock - name: Use latest stable Xcode uses: maxim-lobanov/setup-xcode@v1 with: diff --git a/.github/workflows/tv-os-build-test.yml b/.github/workflows/tv-os-build-test.yml index e3316207e5..370a512e5b 100644 --- a/.github/workflows/tv-os-build-test.yml +++ b/.github/workflows/tv-os-build-test.yml @@ -31,7 +31,7 @@ jobs: with: node-version: 18 cache: 'yarn' - cache-dependency-path: 'TVOSExample/yarn.lock' + cache-dependency-path: ${{ env.WORKING_DIRECTORY }}/yarn.lock - name: Install node dependencies working-directory: ${{ env.WORKING_DIRECTORY }} run: yarn