We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed948d1 commit 170e0eaCopy full SHA for 170e0ea
.github/workflows/config.yml
@@ -3,7 +3,7 @@ name: Playwright Tests
3
on:
4
push:
5
branches:
6
- - test-practice
+ - interview
7
8
jobs:
9
playwright-run:
@@ -27,5 +27,9 @@ jobs:
27
- name: Run Playwright web tests
28
run: npx playwright test 1_Login.spec.ts -c playwright.web.config.ts
29
30
- - name: Run Playwright API tests
31
- run: npx playwright test 1_Login.spec.ts -c playwright.api.config.ts
+ - name: Upload Playwright test report (optional)
+ if: always()
32
+ uses: actions/upload-artifact@v3
33
+ with:
34
+ name: playwright-report
35
+ path: playwright-report/
0 commit comments