Add AGIJobManager Prime · Mainnet Console (genesis) UI #537
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: Docs Integrity | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Enforce no-binaries policy | |
| run: node scripts/check-no-binaries.mjs | |
| - name: Check docs freshness/integrity | |
| run: npm run docs:check | |
| - name: ENS docs integrity | |
| run: npm run docs:ens:check |