Skip to content

test

test #7

Workflow file for this run

name: test
on: workflow_dispatch
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node: [20.x,21.x,22.x,23.x,24.x]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install
run: pnpm install --frozen-lockfile=false
- name: Test
run: pnpm test