Skip to content

chore: modernize tooling and convert to ESM (#30) #3

chore: modernize tooling and convert to ESM (#30)

chore: modernize tooling and convert to ESM (#30) #3

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [22, 24]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@91ab88e2619ed1f46221f0ba42d1492c02baf788
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test