From 44db77e39e736d11f904e79449daddacf2eb15fe Mon Sep 17 00:00:00 2001 From: Arda Oz Date: Mon, 24 Aug 2026 22:39:56 +0300 Subject: [PATCH] ci: run the CI workflow nightly DX-2954. Add a daily schedule (00:00 UTC) and a manual trigger so the lint/typecheck/test/build/e2e pipeline also runs on main without commits, in line with the nightly runs in workflow-js, redis-js and ratelimit-js. --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a809e27..b8c79b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,11 @@ on: branches: [main] pull_request: branches: [main] + # Nightly run on main so we notice breakage from upstream changes (Redis, model + # providers, unpinned deps) even on days without commits. + schedule: + - cron: "0 0 * * *" + workflow_dispatch: concurrency: group: ci-${{ github.ref }}