Log smoke #401
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: Log smoke | |
| on: | |
| schedule: | |
| - cron: '*/15 * * * *' | |
| workflow_dispatch: | |
| inputs: | |
| scope: | |
| description: Check scope | |
| required: true | |
| default: all | |
| type: choice | |
| options: | |
| - all | |
| - health | |
| - assets | |
| permissions: | |
| contents: read | |
| jobs: | |
| smoke: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - name: Check public log endpoints | |
| shell: bash | |
| env: | |
| LOG_SMOKE_SCOPE: ${{ github.event_name == 'schedule' && 'health' || inputs.scope || 'all' }} | |
| run: node .github/scripts/check-log-smoke.mjs |