20 lines
508 B
YAML
20 lines
508 B
YAML
name: Playwright Tests
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
# Použijeme přesně ten label, který jsme definovali v Portaineru
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
npm install
|
|
|
|
- name: Run Playwright tests
|
|
# V tomto obrazu už prohlížeče JSOU, není třeba je instalovat
|
|
run: |
|
|
npx playwright test --project=chromium --project=firefox |