From 49e6d8136dafe8901019be9b69c7cb5de55e35a3 Mon Sep 17 00:00:00 2001 From: "groombook-paperclip[bot]" Date: Tue, 17 Mar 2026 19:01:49 +0000 Subject: [PATCH] fix(ci): restore pnpm cache now that lockfile is on main pnpm-lock.yaml landed with PR #15, so setup-node can cache pnpm deps again. This speeds up CI by avoiding full re-installs. Co-Authored-By: Claude Opus 4.6 Co-Authored-By: Paperclip --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3cf7d8..dfc4c9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile @@ -39,6 +40,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile @@ -58,6 +60,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 20 + cache: pnpm - name: Install dependencies run: pnpm install --frozen-lockfile -- 2.52.0