From a9e148701df31d53025c8492f5ccc558c570d164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Sun, 14 Jun 2026 12:25:25 +0200 Subject: [PATCH] Add TS build step to CI so e2e custom element tests have compiled JS Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/build-docker.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index 10530f8..26edc96 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -19,6 +19,17 @@ jobs: - name: Install dependencies run: uv sync --frozen + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: "22" + + - name: Install pnpm and JS dependencies + run: npm install -g pnpm && pnpm install --frozen-lockfile --ignore-scripts + + - name: Build TypeScript + run: make ts + - name: Install Playwright browsers run: uv run playwright install --with-deps chromium