feat: prepare Dizzy general distribution for collaborator review #18
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: Clawd Deterministic CI Gate | |
| on: | |
| push: | |
| branches: [ main, "codex/*", "feat/*" ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| verify: | |
| name: Council Verification Gate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20.18.1" | |
| cache: "npm" | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Run Deterministic Safety & Fuzzing Tests | |
| run: npm test | |
| - name: Run Maintenance Suite | |
| run: npm run maintain | |
| - name: Run Eval Gate Promotion Policy | |
| run: npm run check:eval-gate | |
| - name: Run OSS Council 3-Layer Audit | |
| run: npm run check:council |