Skip to content

fix(holder): a handover must not freeze the config it was started with #1169

fix(holder): a handover must not freeze the config it was started with

fix(holder): a handover must not freeze the config it was started with #1169

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20, 22]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm install --no-audit --no-fund
- name: Syntax check
run: node --check preload.mjs
- name: Run tests
run: npm test