Skip to content

Log smoke

Log smoke #420

Workflow file for this run

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