Skip to content

some debug

some debug #82

Workflow file for this run

name: tests
on:
push:
branches-ignore: [main]
jobs:
unit-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node_version: [24]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm exec prettier --check .
- run: pnpm run build
- run: pnpm run test