From 7e7ef88df2d26ffb055f10cbbeba5c4bced0b7d3 Mon Sep 17 00:00:00 2001 From: Myles Scolnick Date: Tue, 12 May 2026 11:00:41 -0400 Subject: [PATCH] chore: pin pnpm via packageManager Adds packageManager: pnpm@10.28.2 to package.json and drops the redundant `version:` arg from pnpm/action-setup. The action now reads the version from packageManager, giving a single source of truth shared between local dev and CI. --- .github/workflows/demo.yml | 2 -- .github/workflows/release.yml | 2 -- .github/workflows/test.yml | 2 -- package.json | 1 + 4 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 2ba52db..a4cc1f9 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -20,8 +20,6 @@ jobs: - name: ⎔ Setup pnpm uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4 - with: - version: 10 - name: ⎔ Setup Node.js uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 28778c0..46eb601 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,8 +19,6 @@ jobs: - name: ⎔ Setup pnpm uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4 - with: - version: 10 - name: ⎔ Setup Node.js uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f0829a..5401eef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,8 +25,6 @@ jobs: - name: ⎔ Setup pnpm uses: pnpm/action-setup@b906affcce14559ad1aafd4ab0e942779e9f58b1 # v4 - with: - version: 10 - name: ⎔ Setup Node.js uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 diff --git a/package.json b/package.json index 05fde29..d72736f 100644 --- a/package.json +++ b/package.json @@ -28,6 +28,7 @@ "sql" ], "license": "Apache-2.0", + "packageManager": "pnpm@10.28.2", "peerDependencies": { "@codemirror/autocomplete": "^6", "@codemirror/lint": "^6",