Skip to content

Commit cad3b96

Browse files
committed
fix(ci): disable Corepack network access in workflows
- Add COREPACK_ENABLE_NETWORK: 0 to all workflow jobs - Prevents network access during package manager operations Fixes build issues with Corepack network access in CI. refs #17
1 parent 3520daa commit cad3b96

5 files changed

Lines changed: 943 additions & 9 deletions

File tree

.github/workflows/canary.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ jobs:
3535
with:
3636
node-version: '24'
3737

38-
- name: Enable Corepack
39-
run: corepack enable
40-
4138
- name: Restore dependencies from cache
4239
id: cache
4340
uses: actions/cache@v4

.github/workflows/dev.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ jobs:
3535
with:
3636
node-version: '24'
3737

38-
- name: Enable Corepack
39-
run: corepack enable
40-
4138
- name: Restore dependencies from cache
4239
id: cache
4340
uses: actions/cache@v4

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ jobs:
2323
with:
2424
node-version: '24'
2525

26-
- name: Enable Corepack
27-
run: corepack enable
28-
2926
- name: Install dependencies
3027
run: yarn install --immutable
3128

.yarn/releases/yarn-4.11.0.cjs

Lines changed: 942 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yarnPath: .yarn/releases/yarn-4.11.0.cjs

0 commit comments

Comments
 (0)