Skip to content

some fixes

some fixes #6

Workflow file for this run

name: build & test
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get Node
uses: actions/setup-node@v4
with:
node-version: '22.x'
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test