Skip to content

Commit 26e09df

Browse files
authored
ci(traceability): enable corepack so the SDK build can use pnpm (#289)
The refresh run failed with 'pnpm: not found' — the reference SDK's build command (typescript-sdk: pnpm install && pnpm run build:all) needs pnpm on PATH. Add 'corepack enable' to the run job.
1 parent 1ef3cd3 commit 26e09df

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/traceability.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
node-version: 24
4343
cache: npm
4444

45+
# The SDK's own build (e.g. typescript-sdk uses `pnpm install && pnpm run
46+
# build:all`) needs pnpm on PATH; corepack provides it.
47+
- run: corepack enable
48+
4549
- run: npm ci
4650
- run: npm run build
4751

0 commit comments

Comments
 (0)