Skip to content

3.0.0

3.0.0 #90

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Build & test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, v20.11.1, '*']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: npm ci
- run: npm test