Skip to content

chore: remove legacy docs/PLAN.md, bump to 0.8.1 #11

chore: remove legacy docs/PLAN.md, bump to 0.8.1

chore: remove legacy docs/PLAN.md, bump to 0.8.1 #11

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
pull_request:
jobs:
test:
name: test (node ${{ matrix.node-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18, 20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test