Skip to content

Commit 0c45558

Browse files
fix:corepack
1 parent 78c0cc8 commit 0c45558

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/build-android.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ jobs:
3232
java-version: 17
3333
distribution: 'temurin'
3434

35+
- name: Setup Node.js
36+
uses: actions/setup-node@v4
37+
with:
38+
node-version: 18
39+
40+
- name: Enable Corepack
41+
run: corepack enable
42+
3543
- name: Get yarn cache directory path
3644
id: yarn-cache-dir-path
3745
run: |

.github/workflows/build-ios.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,13 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v4
2828
- name: Install node
29-
uses: actions/setup-node@v3
29+
uses: actions/setup-node@v4
3030
with:
3131
node-version: 18
32+
33+
- name: Enable Corepack
34+
run: corepack enable
35+
3236
- name: Get yarn cache directory path
3337
id: yarn-cache-dir-path
3438
run: |

0 commit comments

Comments
 (0)