Skip to content

Compat

Compat #187

Workflow file for this run

name: Compat
on:
push:
branches-ignore:
- '**-wip'
pull_request:
jobs:
compat:
runs-on: ubuntu-latest
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
strategy:
fail-fast: false
matrix:
node-version: ['18', '20', '22']
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Compat test
run: pnpm test:compat