Skip to content

Commit a22ab6e

Browse files
Saadnajmiclaude
andcommitted
fix: add explicit yarn install to Hermes workflow
Add toolchain setup and explicit yarn install step before the prepare-hermes-workspace action to ensure dependencies are available. This matches the pattern used in other successful workflows. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 4a49161 commit a22ab6e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build-hermes-macos-spm.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ jobs:
2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v4
27+
- name: Setup toolchain
28+
uses: ./.github/actions/microsoft-setup-toolchain
29+
with:
30+
node-version: '22'
31+
cache-npm-dependencies: ''
32+
- name: Install dependencies
33+
run: yarn install
2734
- name: Prepare Hermes Workspace
2835
id: prepare-hermes-workspace
2936
uses: ./.github/actions/prepare-hermes-workspace

0 commit comments

Comments
 (0)