Skip to content

Upgrade CI

Upgrade CI #45

Workflow file for this run

name: NodeJS
on: [push, pull_request]
jobs:
test:
name: Run tests
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04, macos-latest, windows-latest]
node: [20, 22, 24]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install
- run: yarn test