Skip to content

v0.4.4

v0.4.4 #227

Workflow file for this run

name: Unit - Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'pnpm'
- run: pnpm install
env:
CI: true
- name: Run tests
run: pnpm test