Skip to content

Commit 6e4d4ba

Browse files
fix(ci): use npm install instead of npm ci for release workflow
npm ci in npm 10 has stricter validation that conflicts with our monorepo workspace setup. npm install respects the lockfile and is more resilient. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9be222d commit 6e4d4ba

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ jobs:
2323
cache: 'npm'
2424

2525
- name: Install dependencies
26-
run: npm ci
27-
env:
28-
npm_config_engine_strict: 'false'
26+
run: npm install --prefer-offline
2927

3028
- name: Build all packages
3129
run: npm run build

0 commit comments

Comments
 (0)