Merge branch 'master' into chore/add-biome

This commit is contained in:
Marc Emmanuel 2026-01-26 19:00:35 +01:00 committed by GitHub
commit 5f5695b74c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 129 additions and 10 deletions

17
.github/workflows/unit-tests.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Unit Tests
on:
pull_request:
branches: [ master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: '24'
- name: Install dependencies
run: npm ci
- name: Run Unit tests
run: npm run test