Add TS build step to CI so e2e custom element tests have compiled JS

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-14 12:25:25 +02:00
parent c3de90e805
commit a9e148701d
+11
View File
@@ -19,6 +19,17 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: uv sync --frozen 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 - name: Install Playwright browsers
run: uv run playwright install --with-deps chromium run: uv run playwright install --with-deps chromium