Skip to content

Commit 4a49161

Browse files
Saadnajmiclaude
andcommitted
fix: add yarn install to ReactNativeDependencies workflow
Add explicit yarn install step to all jobs in the ReactNativeDependencies workflow to ensure dependencies are available before running build scripts. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 55dc737 commit 4a49161

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-react-native-dependencies-pr.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
with:
1616
platform: macos
1717
node-version: '22'
18+
- name: Install dependencies
19+
run: yarn install
1820
- name: Restore cache if present
1921
id: restore-rn-deps
2022
uses: actions/cache/restore@v4
@@ -59,6 +61,8 @@ jobs:
5961
with:
6062
platform: macos
6163
node-version: '22'
64+
- name: Install dependencies
65+
run: yarn install
6266
- name: Restore slice folder
6367
id: restore-slice-folder
6468
uses: actions/cache/restore@v4
@@ -107,6 +111,8 @@ jobs:
107111
with:
108112
platform: macos
109113
node-version: '22'
114+
- name: Install dependencies
115+
run: yarn install
110116
- name: Restore XCFramework
111117
id: restore-xcframework
112118
uses: actions/cache/restore@v4

0 commit comments

Comments
 (0)