Skip to content

refactor(cache): separate web-ui-settings cache from payload cache #64

refactor(cache): separate web-ui-settings cache from payload cache

refactor(cache): separate web-ui-settings cache from payload cache #64

Workflow file for this run

name: server CI
on:
push:
branches:
- master
paths:
- workspaces/server/**
pull_request:
paths:
- workspaces/server/**
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --ignore-scripts
- name: Build
run: npm run build:workspaces
- name: Run tests
run: npm run test -w workspaces/server