Ensure Playwright browsers are installed in all GitHub workflow test jobs (#981)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: thomasnordquist <7721625+thomasnordquist@users.noreply.github.com>
This commit is contained in:
Copilot
2025-12-23 16:29:02 +01:00
committed by GitHub
parent 4fcdd47e65
commit dfdf473b27
4 changed files with 32 additions and 12 deletions

View File

@@ -10,6 +10,11 @@ ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# Install Playwright and browsers
# This ensures Playwright browsers are pre-installed in the container
RUN npm install -g playwright@1.57.0 && \
npx playwright install --with-deps chromium
CMD /bin/bash
VOLUME /app