ci: use node-linker=hoisted instead of shamefully-hoist
Some checks failed
CI/CD / typecheck (push) Successful in 42s
CI/CD / test (push) Successful in 53s
CI/CD / lint (push) Successful in 10m51s
CI/CD / build (push) Failing after 6m46s
CI/CD / docker (push) Has been skipped
CI/CD / publish-rpm (push) Has been skipped
CI/CD / deploy (push) Has been skipped

shamefully-hoist still creates symlinks to .pnpm store which bun
can't follow (EISDIR errors). node-linker=hoisted creates actual
copies in a flat node_modules layout, like npm.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Michal
2026-03-09 07:56:14 +00:00
parent 11266e8912
commit 201189d914

View File

@@ -97,7 +97,7 @@ jobs:
- name: Install dependencies (hoisted for bun compile compatibility)
run: |
echo "shamefully-hoist=true" >> .npmrc
echo "node-linker=hoisted" >> .npmrc
pnpm install --frozen-lockfile
- name: Generate Prisma client