test: add intentional compilation error to fail backend CI

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
centdix
2026-03-13 12:45:30 +01:00
parent c80d9a4505
commit cf7ca75db0

View File

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