Skip to content

Update to new error handling to be unit tested #63

Update to new error handling to be unit tested

Update to new error handling to be unit tested #63

Workflow file for this run

name: CI unit tests
on:
push:
paths:
- '**.js'
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.11.1'
- name: Install server dependencies
working-directory: ./server
run: npm install
- name: Run unit tests with Ava
working-directory: ./server
run: npx ava test/unit/*.js