Verify deployed log #75
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: Verify deployed log | |
| on: | |
| schedule: | |
| - cron: '0 6 * * *' | |
| workflow_dispatch: | |
| # Default to read-only GITHUB_TOKEN; jobs that need more (release.yml does) | |
| # specify their own permissions block. Closes CodeQL alert | |
| # actions/missing-workflow-permissions. | |
| permissions: | |
| contents: read | |
| # Opt into Node.js 24 for transitive JS actions (see ci.yml for rationale). | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| token: ${{ github.token }} | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'pnpm' | |
| - run: pnpm install --frozen-lockfile | |
| - name: Run verifier against deployed log | |
| run: pnpm --filter @atrib/log-node verify-log |