We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b102db3 commit 2eeb537Copy full SHA for 2eeb537
1 file changed
.github/workflows/db-migration-backwards-compatibility.yaml
@@ -195,7 +195,12 @@ jobs:
195
- name: Start run-cron-jobs in background
196
uses: JarvusInnovations/background-action@v1.0.7
197
with:
198
- run: pnpm -C apps/backend run run-cron-jobs --log-order=stream &
+ run: |
199
+ if [ -f apps/backend/scripts/run-cron-jobs.ts ]; then
200
+ pnpm -C apps/backend run with-env:dev tsx scripts/run-cron-jobs.ts --log-order=stream &
201
+ else
202
+ echo "scripts/run-cron-jobs.ts missing on this branch; skipping cron runner."
203
+ fi
204
wait-on: |
205
http://localhost:8102
206
tail: true
0 commit comments