Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Playwright Tests
on:
push:
branches: [ main ]
branches: [ main, master ]
pull_request:
branches: [ main ]
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
Expand All @@ -12,11 +12,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install chromium --with-deps
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v3
Expand All @@ -25,7 +25,3 @@ jobs:
name: playwright-report
path: playwright-report/
retention-days: 30
- name: Run unit tests
run: npm run test
- name: Run OAs tests
run: npm run test:oas
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ node_modules/
/test-results/
/playwright-report/*
/playwright/.cache/
/test-results/
/playwright-report/
/playwright/.cache/
768 changes: 23 additions & 745 deletions README.md

Large diffs are not rendered by default.

Loading