Removed auth
All checks were successful
Publish Container / publish (push) Successful in 5m35s

This commit is contained in:
Marco 2026-04-20 14:11:18 +02:00
commit 08e573d63c
17 changed files with 348 additions and 26 deletions

10
Dockerfile.playwright Normal file
View file

@ -0,0 +1,10 @@
FROM mcr.microsoft.com/playwright:v1.59.1-noble
WORKDIR /workspace
COPY package.json playwright.config.ts ./
COPY tests ./tests
RUN npm install --no-fund --no-audit
CMD ["npx", "playwright", "test"]