Skip to content

Bump pnpm/action-setup from 6 to 6.0.9 #2860

Bump pnpm/action-setup from 6 to 6.0.9

Bump pnpm/action-setup from 6 to 6.0.9 #2860

Workflow file for this run

name: Build
on:
push:
branches:
- '**'
tags-ignore:
- 'v*'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['20', '22', '24']
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6.0.9
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- run: pnpm dedupe --check
- run: pnpm build
- run: pnpm lint
- run: pnpm test run