Add operator release artifact digest perimeter #208
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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)" |