Skip to content

update readme

update readme #2

Workflow file for this run

name: ci
on:
push:
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 22
- 24
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test
- run: npm run typecheck
- run: npm run lint