Skip to content

fix

fix #79

Workflow file for this run

---
name: Unit Test
on:
push: {}
defaults:
run:
shell: bash
jobs:
build:
runs-on: ['hyperenv', 'medium']
strategy:
fail-fast: false
matrix:
node: ['18', '20', '22']
name: Node.js ${{ matrix.node }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: |
npm ci
npm test