From cf7ca75db08bf89ba5bb05568a41a943ffe80325 Mon Sep 17 00:00:00 2001 From: centdix Date: Fri, 13 Mar 2026 12:45:30 +0100 Subject: [PATCH] test: add intentional compilation error to fail backend CI Co-Authored-By: Claude Opus 4.6 --- backend/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/src/main.rs b/backend/src/main.rs index 08d59c9dd9..129ddfa060 100644 --- a/backend/src/main.rs +++ b/backend/src/main.rs @@ -221,6 +221,9 @@ pub fn main() -> anyhow::Result<()> { } } + // This line intentionally fails compilation to test CI + let _: i32 = this_variable_does_not_exist; + // Normal execution (console/foreground mode) setup_deno_runtime()?; create_and_run_current_thread_inner(windmill_main())