Skip to content

Bump the minor-and-patch group with 3 updates #1053

Bump the minor-and-patch group with 3 updates

Bump the minor-and-patch group with 3 updates #1053

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
strategy:
matrix:
node: [20, 22, 24]
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout repo
uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- name: Set-up Node.js ${{ matrix.node }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: CI checks with Biome
run: pnpm run ci
- name: Typecheck
run: pnpm run typecheck
- name: Test
run: pnpm run test -- --coverage
- name: Build
run: pnpm run build