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