From 6b73e7411ea7506a909468274838e12a2350a698 Mon Sep 17 00:00:00 2001 From: Victoria Nadasdi Date: Wed, 22 May 2024 15:04:56 +0200 Subject: [PATCH] fix: pin node packageManager As packageManager is not pinned, `pnpm install --frozen-lockfile` will install the latest version and adds it to the `package.json` file. That makes PR checks fail because it checks if there are any changes (`diff`) in the working directory as a step. --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 0abd2f2..dfe7146 100644 --- a/package.json +++ b/package.json @@ -49,5 +49,6 @@ "remark-lint-no-undefined-references": "^4.2.1", "remark-preset-lint-consistent": "^5.1.2", "remark-preset-lint-recommended": "^6.1.3" - } + }, + "packageManager": "pnpm@9.1.2+sha512.127dc83b9ea10c32be65d22a8efb4a65fb952e8fefbdfded39bdc3c97efc32d31b48b00420df2c1187ace28c921c902f0cb5a134a4d032b8b5295cbfa2c681e2" }