From c80d9a450508923f5687d671d320862d2d8dba87 Mon Sep 17 00:00:00 2001 From: centdix Date: Thu, 12 Mar 2026 18:51:51 +0100 Subject: [PATCH 1/2] config --- .webmux.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.webmux.yaml b/.webmux.yaml index 84f82d4a11a3f..47a60b7b2c06d 100644 --- a/.webmux.yaml +++ b/.webmux.yaml @@ -9,7 +9,6 @@ workspace: startupEnvs: CARGO_FEATURES: "quickjs" WM_CLONE_DB: false - USE_RUST_PLUGIN: false lifecycleHooks: postCreate: bash ./scripts/post-create.sh @@ -61,29 +60,6 @@ profiles: split: bottom command: ROOT="$(git rev-parse --show-toplevel)"; cd "$ROOT/frontend" && npm run generate-backend-client && REMOTE=${REMOTE:-http://localhost:${BACKEND_PORT:-8000}} npm run dev -- --port ${FRONTEND_PORT:-3000} --host 0.0.0.0 - frontendOnly: - runtime: host - yolo: true - envPassthrough: [] - systemPrompt: > - You are running inside a tmux session with other panes running services. - Pane layout (current window): - - Pane 0: this pane (claude agent) - - Pane 1: frontend (npm run dev) - To check logs, use: \`tmux capture-pane -t .1 -p -S -50\` (frontend). - When restarting frontend, make sure to use ${FRONTEND_PORT}. - To connect to the database, use this connection string: ${DATABASE_URL} - Because we are running frontend with npm run dev, to verify your changes, just check the logs in the frontend pane. No need for npm run build. - IMPORTANT: Read docs/autonomous-mode.md before starting any work. - panes: - - id: agent - kind: agent - focus: true - - id: frontend - kind: command - split: right - command: ROOT="$(git rev-parse --show-toplevel)"; cd "$ROOT/frontend" && npm run generate-backend-client && npm run dev -- --port ${FRONTEND_PORT:-3000} --host 0.0.0.0 - agentOnly: runtime: host yolo: true @@ -96,10 +72,5 @@ profiles: focus: true integrations: - github: - linkedRepos: - - repo: windmill-labs/windmill-ee-private - alias: ee-private - dir: ../windmill-ee-private__worktrees linear: enabled: true From 19c204e938cf2e19fd4bee566da716494692cc91 Mon Sep 17 00:00:00 2001 From: centdix Date: Fri, 13 Mar 2026 13:04:17 +0100 Subject: [PATCH 2/2] test: add intentional type error to break frontend CI Co-Authored-By: Claude Opus 4.6 --- frontend/src/lib/utils.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/lib/utils.ts b/frontend/src/lib/utils.ts index 49a9568312339..ab16aa6a664e8 100644 --- a/frontend/src/lib/utils.ts +++ b/frontend/src/lib/utils.ts @@ -18,6 +18,9 @@ import type { AnyMeltElement } from '@melt-ui/svelte' import type { TriggerKind } from './components/triggers' import { stateSnapshot } from './svelte5Utils.svelte' +// Intentional type error to make CI fail +const _ciBreaker: string = 42 + export namespace OpenApi { export enum OpenApiVersion { V2,