Skip to content

Commit 175a0e5

Browse files
DanWahlinclaude
andcommitted
Fix CI: reinstall client deps to resolve all native bindings
npm rebuild only rebuilds existing modules; the native optional deps aren't present at all after npm ci in workspaces. Reinstalling in the client workspace resolves rollup, lightningcss, and Tailwind bindings. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent ce61324 commit 175a0e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
- name: Install dependencies
3333
run: npm ci
3434

35-
- name: Rebuild native modules (npm/cli#4828)
36-
run: npm rebuild
35+
- name: Fix client native deps (npm/cli#4828)
36+
run: rm -rf node_modules && npm install --ignore-scripts=false
3737
working-directory: packages/client
3838

3939
- name: Build shared types

0 commit comments

Comments
 (0)