Skip to content

fix(deps): update all #810

fix(deps): update all

fix(deps): update all #810

Workflow file for this run

name: "Pull Request"
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
jobs:
server-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
working-directory: server
- name: Create config file
run: cp example.config.json config.json
working-directory: server
- name: Run unit tests
run: npm run test
working-directory: server