Skip to content

Minor improvements and fixes in the documentation #4

Minor improvements and fixes in the documentation

Minor improvements and fixes in the documentation #4

Workflow file for this run

name: Test
on:
push:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run tests
run: npm run test