Skip to content

2.9.1

2.9.1 #75

Workflow file for this run

---
name: Unit Test
on:
push: {}
defaults:
run:
shell: bash
jobs:
build:
runs-on: ['hyperenv', 'medium']
strategy:
matrix:
node: ['18', '20']
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