Skip to content

Commit 87e955d

Browse files
committed
Update CI workflows to use Node.js for dependency installation
1 parent 9c38069 commit 87e955d

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/android-build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,12 @@ jobs:
4444
arch: [new, old]
4545
steps:
4646
- uses: actions/checkout@v4
47-
- uses: oven-sh/setup-bun@v2
47+
- uses: actions/setup-node@v4
48+
with:
49+
node-version: '20'
4850

49-
- name: Install dependencies (bun)
50-
run: bun install
51+
- name: Install dependencies (yarn)
52+
run: yarn install --immutable
5153

5254
- name: Disable new architecture in gradle.properties
5355
if: matrix.arch == 'old'

.github/workflows/ios-build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,16 @@ jobs:
5555
arch: [new, old]
5656
steps:
5757
- uses: actions/checkout@v4
58-
- uses: oven-sh/setup-bun@v2
58+
- uses: actions/setup-node@v4
59+
with:
60+
node-version: '20'
5961
- name: Setup Xcode
6062
uses: maxim-lobanov/setup-xcode@v1
6163
with:
6264
xcode-version: 16.4
6365

64-
- name: Install dependencies (bun)
65-
run: bun install
66+
- name: Install dependencies (yarn)
67+
run: yarn install --immutable
6668

6769
- name: Disable new architecture in Podfile
6870
if: matrix.arch == 'old'

0 commit comments

Comments
 (0)