From 807509f2dfe7ef4b540189ef78d57e3154cb4172 Mon Sep 17 00:00:00 2001 From: Jinho Ayden Jeong <144667387+ayden94@users.noreply.github.com> Date: Sun, 19 Jul 2026 18:53:01 +0900 Subject: [PATCH] ci: fix pnpm action-setup version source MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pnpm/action-setup@v4 requires a pnpm version via either the 'version' input or the packageManager field in package.json. Without it, CI fails at 'Set up pnpm' with 'No pnpm version is specified'. Add packageManager: pnpm@10.17.1 to package.json (matches local lockfile-producing version, corepack standard). No changeset needed — dev-only metadata, no published-package impact. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index b17f049..6e9796f 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ "url": "git+https://github.com/ilokesto/store" }, "homepage": "https://ilokesto.ayden94.com/ko/store", + "packageManager": "pnpm@10.17.1", "type": "module", "sideEffects": false, "main": "dist/index.js",