Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.

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

fix(deps): update all (major)

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

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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
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
client-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
working-directory: client
- name: Run unit tests
run: npm run test
working-directory: client