Skip to content

5.0.0

5.0.0 #83

Workflow file for this run

on: [push, pull_request]
name: tests
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
strategy:
matrix:
node-version:
- "18"
- "22"