From 3cd8fd313480443e1e144894610a9d29f96449bb Mon Sep 17 00:00:00 2001 From: ZverGuy Date: Wed, 13 May 2026 18:01:35 +0300 Subject: [PATCH] ci(workflows): pin pnpm version via packageManager field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pnpm/action-setup@v4 was failing the test workflow with "No pnpm version is specified". Declaring packageManager in package.json is the preferred way to fix this — the action picks it up automatically. Co-Authored-By: Claude Signed-off-by: ZverGuy --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 56a5c38..5d2a7b6 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "cozystack-ui", "private": true, "type": "module", + "packageManager": "pnpm@10.26.0", "scripts": { "dev": "pnpm --filter @cozystack/console dev", "build": "pnpm -r build",