-
-
Notifications
You must be signed in to change notification settings - Fork 9
61 lines (47 loc) · 1.35 KB
/
build-and-test.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
name: Build all templates
on:
pull_request:
branches: [main]
jobs:
build-templates:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Build all packages
run: npm run build
test-desktop-templates:
needs: build-templates
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright Desktop Tests
run: npm run test:desktop:templates
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report-desktop
path: playwright-report-desktop/
retention-days: 10
test-mobile-templates:
needs: build-templates
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright Mobile Tests
run: npm run test:mobile:templates
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report-mobile
path: playwright-report-mobile/
retention-days: 10