Skip to content

Add ADJUTORIX v1.1.0 release artifact attestation finality guard (#107) #213

Add ADJUTORIX v1.1.0 release artifact attestation finality guard (#107)

Add ADJUTORIX v1.1.0 release artifact attestation finality guard (#107) #213

name: ADJUTORIX Verify
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
concurrency:
group: adjutorix-verify-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: verify
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: 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)"