Skip to content

fix: fixed broken links to other github files #157

fix: fixed broken links to other github files

fix: fixed broken links to other github files #157

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup pnpm
uses: pnpm/action-setup@v6
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test