Skip to content

cleanup

cleanup #106

Workflow file for this run

name: Unit - Test
on: push
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install
env:
CI: true
- name: Run tests
run: pnpm test