Files
musicTest/.gitea/workflows/playwright.yaml
T
kankys 6b6a9d66e5
Playwright Tests / test (push) Successful in 1m12s
finall
2026-05-07 09:51:11 +02:00

16 lines
494 B
YAML

name: Playwright Tests
on: [push, pull_request]
jobs:
test:
runs-on: playwright # Runner musí mít tento label
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test --project=chromium --project=firefox