chore: finish migration of yarn/npm to pnpm everywhere

This commit is contained in:
Gavin Mogan 2025-08-22 16:21:57 -07:00
parent 60eaaaff60
commit 0e6442c469
3 changed files with 11 additions and 10 deletions

View file

@ -29,10 +29,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
cache: 'pnpm'
env:
DATABASE_TYPE: ${{ matrix.db-type }}
- run: npm install --global yarn
- run: yarn install
- run: yarn test
- run: yarn build
- run: npm install --global pnpm
- run: pnpm install
- run: pnpm test
- run: pnpm build