Skip to content

Bump the actions group across 1 directory with 3 updates #32

Bump the actions group across 1 directory with 3 updates

Bump the actions group across 1 directory with 3 updates #32

Workflow file for this run

name: CI
on:
pull_request: ~
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: Lint and Test on Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node:
- 24
- 22
- 20
steps:
- name: Checkout Repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup pnpm
uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5.0.0
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ matrix.node }}
cache: pnpm
- name: Install
run: pnpm install --prefer-frozen-lockfile
- name: Test
run: pnpm run test
- name: Lint
run: pnpm run lint