Skip to content

4.0.1

4.0.1 #184

Workflow file for this run

name: CI
on:
push:
branches:
- master
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x, 24.x, 25.x]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run test:coverage
docs-build:
name: Build Docs
runs-on: ubuntu-latest
needs:
- test
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: 25
cache: npm
- run: npm ci
- run: npm run docs