Skip to content

fix: tests, logging

fix: tests, logging #2

Workflow file for this run

name: Node CI
on:
push:
branches: [main, next]
pull_request:
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['20.x', '22.x']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run test