test
Playwright Tests / test (push) Failing after 14s

This commit is contained in:
2026-05-07 10:19:02 +02:00
parent e6380bc050
commit faeffcf28e
+15 -5
View File
@@ -1,10 +1,20 @@
name: Playwright Tests
on: [push, pull_request]
jobs:
test:
runs-on: playwright # Tento label v Runneru zajistí obraz mcr.microsoft.com/playwright
# Použijeme přesně ten label, který jsme definovali v Portaineru
runs-on: playwright
steps:
- uses: actions/checkout@v4
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm install
# npx playwright install už není potřeba, prohlížeče v tom obrazu jsou!
run: |
npm install
- name: Run Playwright tests
run: npx playwright test --project=chromium
# V tomto obrazu už prohlížeče JSOU, není třeba je instalovat
run: |
npx playwright test --project=chromium --project=firefox