From b2c829a077fc388bb17e7c045a702be507b08dc0 Mon Sep 17 00:00:00 2001 From: Nick Maynard Date: Wed, 17 Sep 2025 21:37:57 +0100 Subject: [PATCH] Add setup-pnpm to hopefully fix CI tests etc. --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 478e5ad1..d2e027cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,12 +19,18 @@ jobs: matrix: include: - node-version: 18.18 + pnpm-version: 10 db-type: postgresql - node-version: 18.18 + pnpm-version: 10 db-type: mysql steps: - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 # required so that setup-node will work + with: + version: ${{ matrix.pnpm-version }} + run_install: false - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: