Skip to content

Add musafety doctor command for repair + safety verification #9

Add musafety doctor command for repair + safety verification

Add musafety doctor command for repair + safety verification #9

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
name: test (node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install
run: npm install --ignore-scripts
- name: Unit tests
run: npm test
- name: Static check CLI entrypoint
run: node --check bin/multiagent-safety.js
- name: Package dry run
run: npm pack --dry-run