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.
This commit is contained in:
Chris Tate
2026-03-14 16:59:05 -05:00
committed by GitHub
parent a773863214
commit 06842ea7c5
-6
View File
@@ -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