We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7124843 commit 615cf55Copy full SHA for 615cf55
.github/workflows/playwright.yml
@@ -5,23 +5,15 @@ on:
5
pull_request:
6
branches: [main, master]
7
jobs:
8
- test:
9
- timeout-minutes: 60
+ tests_e2e:
+ name: Run end-to-end tests
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v3
13
- uses: actions/setup-node@v3
14
- with:
15
- node-version: 18
16
- name: Install dependencies
17
run: npm ci
18
- - name: Install Playwright Browsers
+ - name: Install playwright browsers
19
run: npx playwright install --with-deps
20
- - name: Run Playwright tests
21
- run: npx playwright test
22
- - uses: actions/upload-artifact@v3
23
- if: always()
24
25
- name: playwright-report
26
- path: playwright-report/
27
- retention-days: 30
+ - name: Run tests
+ run: npx playwright test retention-days: 30
0 commit comments