Skip to content

Merge pull request #8 from psychoinformatics-de/error-handling #17

Merge pull request #8 from psychoinformatics-de/error-handling

Merge pull request #8 from psychoinformatics-de/error-handling #17

Workflow file for this run

name: vitest
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test