From 79c05e1ecd2ec4d1045e4d0491326b3a25253e0b Mon Sep 17 00:00:00 2001 From: Myles Scolnick Date: Tue, 12 May 2026 11:07:24 -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/ci.yml | 6 ------ .github/workflows/release.yml | 2 -- package.json | 1 + 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 002433f..c475da6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,8 +17,6 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6 - with: - version: 10 - name: Set node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 @@ -38,8 +36,6 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6 - with: - version: 10 - name: Set node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 @@ -59,8 +55,6 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6 - with: - version: 10 - name: Set node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3da1110..9190793 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,8 +18,6 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6 - with: - version: 10 - name: Set node uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6 diff --git a/package.json b/package.json index 3a1bb64..b663095 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "description": "Teleport React components into anywhere into the react-tree.", "author": "marimo", "license": "MIT", + "packageManager": "pnpm@10.28.2", "type": "module", "publishConfig": { "access": "public"