diff --git a/.github/workflows/server-healthcheck.yml b/.github/workflows/server-healthcheck.yml index 0f3d4a4..939a4da 100644 --- a/.github/workflows/server-healthcheck.yml +++ b/.github/workflows/server-healthcheck.yml @@ -2,8 +2,10 @@ name: Server Healthcheck on: workflow_dispatch: - schedule: - - cron: '*/15 * * * *' # every 15 minutes + # NOTE: scheduled runs disabled. healthcheck.js only opens the local + # committed SQLite DB on the runner (it does not reach the deployed + # server), so a cron schedule here validated nothing and burned Actions + # minutes. Run manually via the Actions tab when needed. jobs: healthcheck: @@ -13,7 +15,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '20' - name: Install dependencies run: | cd database