From 7ce3debe10cbecf199af0bfe86044856ec559160 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Fri, 19 Apr 2024 16:45:24 +0200 Subject: [PATCH] Match versions --- src/install-pnpm/run.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/install-pnpm/run.ts b/src/install-pnpm/run.ts index 66e82e4..7365e5a 100644 --- a/src/install-pnpm/run.ts +++ b/src/install-pnpm/run.ts @@ -55,7 +55,10 @@ async function readTarget(opts: { } if (version) { - if (typeof packageManager === 'string') { + if ( + typeof packageManager === 'string' && + packageManager.replace('pnpm@', '') !== version + ) { throw new Error(`Multiple versions of pnpm specified: - version ${version} in the GitHub Action config with the key "version" - version ${packageManager} in the package.json with the key "packageManager"