Skip to content

Add Adjutorix guided mission composer and governed routing #458

Add Adjutorix guided mission composer and governed routing

Add Adjutorix guided mission composer and governed routing #458

name: ADJUTORIX Finality
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
concurrency:
group: adjutorix-finality-${{ github.ref }}
cancel-in-progress: true
jobs:
finality:
name: finality
runs-on: macos-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Enable Corepack
run: corepack enable
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: '24'
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Guard V1 finality
run: bash configs/ci/guard_v1_finality.sh
- name: Verify
run: pnpm run verify
- name: Assert clean tracked tree after verify
run: |
git status --short --untracked-files=all
test -z "$(git status --short --untracked-files=all)"