Skip to content

docs(readme): update #159

docs(readme): update

docs(readme): update #159

Workflow file for this run

name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install, build, and test
run: |
pnpm install --frozen-lockfile
pnpm build
pnpm test
env:
CI: true