Skip to content

fix(deps): update all (major) #832

fix(deps): update all (major)

fix(deps): update all (major) #832

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@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # 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