Merge pull request #3623 from nickcmaynard/fix-ci
Some checks failed
Node.js CI / build (mysql, 18.18, 10) (push) Has been cancelled
Node.js CI / build (postgresql, 18.18, 10) (push) Has been cancelled

Add setup-pnpm to hopefully fix CI tests etc.
This commit is contained in:
Mike Cao 2025-09-17 21:43:28 -07:00 committed by GitHub
commit 9c36f76e1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,12 +19,18 @@ jobs:
matrix: matrix:
include: include:
- node-version: 18.18 - node-version: 18.18
pnpm-version: 10
db-type: postgresql db-type: postgresql
- node-version: 18.18 - node-version: 18.18
pnpm-version: 10
db-type: mysql db-type: mysql
steps: steps:
- uses: actions/checkout@v4 - 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 }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with: