From b77a18f79de5abd374bceea94a0046490e310b6f 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 30f8e2c..18bbca3 100644 --- a/package.json +++ b/package.json @@ -40,6 +40,7 @@ "url": "git+https://github.com/ilokesto/fetcher.git" }, "homepage": "https://github.com/ilokesto/fetcher", + "packageManager": "pnpm@10.17.1", "engines": { "node": ">=22" },