Skip to content

3.0.0

3.0.0 #18

Workflow file for this run

name: Node.js tests
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18, 20, "latest"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- name: Build w/ Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test