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())