From 201189d91460d3664550b174d39da254051ef49e Mon Sep 17 00:00:00 2001 From: Michal Date: Mon, 9 Mar 2026 07:56:14 +0000 Subject: [PATCH] ci: use node-linker=hoisted instead of shamefully-hoist 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 --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index df73954..710330e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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