From 64511ddfdcf837cc7b67b6b965949089ee91995f Mon Sep 17 00:00:00 2001 From: azur84 Date: Wed, 24 Jun 2026 15:12:26 +0200 Subject: [PATCH] Add pnpm to workflows --- .github/workflows/node.js.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 093a954..ee3e2c7 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -25,7 +25,12 @@ jobs: uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - cache: 'npm' + package-manager-cache: false + - name: Setup pnpm + uses: pnpm/action-setup@v6 + with: + cache: true + run_install: true - run: npm ci - run: npm run build --if-present - run: npm test