-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (68 loc) · 2.33 KB
/
playwright.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Playwright Tests
on:
deployment_status
jobs:
visual-regression-tests:
name: Visual Regression Tests
timeout-minutes: 30
runs-on: ubuntu-latest
if: ${{ github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.target_url, 'storybook') }}
steps:
- name: Checkout code
uses: actions/checkout@main
- uses: pnpm/action-setup@v2
- name: Use Node.js
uses: actions/setup-node@main
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright Browsers
run: |
cd packages/functional
npx playwright install chromium
- name: Run Playwright tests
env:
PLAYWRIGHT_TEST_BASE_URL: ${{ github.event.deployment_status.target_url }}
run: |
cd packages/functional
npx playwright test tests/visual-regression/reactant/components/ --project=tests-chromium
- uses: actions/upload-artifact@v3
if: failure()
with:
name: playwright-report
path: packages/functional/playwright-report/
retention-days: 30
ui-tests:
name: Playwright UI Tests
timeout-minutes: 30
runs-on: ubuntu-latest
if: ${{ github.event.deployment_status.state == 'success' && ! contains(github.event.deployment_status.target_url, 'storybook') }}
steps:
- name: Checkout code
uses: actions/checkout@main
- uses: pnpm/action-setup@v2
- name: Use Node.js
uses: actions/setup-node@main
with:
node-version-file: '.nvmrc'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Playwright Browsers
run: |
cd packages/functional
npx playwright install chromium
- name: Run Playwright tests
env:
PLAYWRIGHT_TEST_BASE_URL: ${{ github.event.deployment_status.target_url }}
run: |
cd packages/functional
npx playwright test tests/ui/ --project=tests-chromium
- uses: actions/upload-artifact@v3
if: failure()
with:
name: playwright-report
path: packages/functional/playwright-report/
retention-days: 30