···6060 # Compile the TypeScript application
6161 env:
6262 NODE_ENV: production
6363- run: bun build --compile --target bun --sourcemap --format=cjs src/index.ts --outfile=app --external '@libsql/*' --external libsql
6363+ run: bun build --compile --target bun --sourcemap --format=cjs src/index.ts --outfile=app
64646565 docker:
6666- fromImage: oven/bun:1.3.3
6666+ fromImage: oven/bun:1.3.5
6767 workdir: /app/apps/workflows
6868 copy:
6969 - . /app/
+2-2
apps/workflows/src/cron/checker.ts
···9898 const monitors = z.array(selectMonitorSchema).safeParse(result);
9999 const allResult = [];
100100 if (!monitors.success) {
101101- logger.error(`Error while fetching the monitors ${monitors.error.errors}`);
101101+ logger.error(`Error while fetching the monitors ${monitors.error}`);
102102 throw new Error("Error while fetching the monitors");
103103 }
104104···113113 const monitorStatus = z.array(selectMonitorStatusSchema).safeParse(result);
114114 if (!monitorStatus.success) {
115115 console.error(
116116- `Error while fetching the monitor status ${monitorStatus.error.errors}`,
116116+ `Error while fetching the monitor status ${monitorStatus.error}`,
117117 );
118118 continue;
119119 }