Skip to content

chore: update and fix dependencies for package publishing #174

chore: update and fix dependencies for package publishing

chore: update and fix dependencies for package publishing #174

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@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install --ignore-scripts
- name: Build
run: npm run build
- name: Run tests
run: npm run test -w workspaces/server