Skip to content

test: Add missing unit tests #40

test: Add missing unit tests

test: Add missing unit tests #40

Workflow file for this run

name: Unit Tests
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
env:
CI: true
SESSION_SECRET: bebacafebebacafebebacafebebacafe
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm run test