From 06842ea7c581655a59009f73aee165e62baa4340 Mon Sep 17 00:00:00 2001 From: Chris Tate Date: Sat, 14 Mar 2026 16:59:05 -0500 Subject: [PATCH] fix: remove unused pnpm setup from global-install CI job (#798) The global-install job only uses npm (npm pack, npm install -g) but had pnpm setup with cache enabled. On Windows, the pnpm store directory doesn't exist since pnpm is never used, causing the Post Setup Node.js cache step to fail with a path validation error. --- .github/workflows/ci.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 218fd1b..84bd228 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -178,16 +178,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Setup pnpm - uses: pnpm/action-setup@v4 - with: - version: 9 - - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: 22 - cache: pnpm - name: Setup Rust toolchain uses: dtolnay/rust-toolchain@stable