-
Notifications
You must be signed in to change notification settings - Fork 1
120 lines (113 loc) · 3.21 KB
/
tests.yml
File metadata and controls
120 lines (113 loc) · 3.21 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unit:
name: Unit Tests
permissions:
checks: write
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
cache: "npm"
node-version-file: ".node_version"
- name: Install Dependencies
run: npm ci
- name: Run Vitest
run: npm run test:unit
- uses: codecov/codecov-action@v5
with:
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: coverage/lcov.info
fail_ci_if_error: false
test-e2e:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
project:
[
{ name: chromium, browser: chromium },
{ name: safari, browser: webkit },
]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: ".node_version"
cache: "npm"
- name: Install npm Dependencies
run: npm ci
- name: Install Browser Dependencies
run: npx playwright install ${{ matrix.project.browser }} --with-deps
- name: Run Playwright tests
run: npx playwright test --project=${{ matrix.project.name }}
- name: Upload blob report to GitHub Actions Artifacts
if: ${{ !cancelled() }}
uses: actions/upload-artifact@v4
with:
name: blob-report-${{ matrix.project.name }}
path: blob-report
retention-days: 1
merge-reports:
# Merge reports after playwright-tests, even if some shards have failed
if: ${{ !cancelled() }}
needs: [test-e2e]
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version-file: ".node_version"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v5
with:
path: all-blob-reports
pattern: blob-report-*
merge-multiple: true
- name: Merge into JSON Report
run: PLAYWRIGHT_JSON_OUTPUT_NAME=results.json npx playwright merge-reports --reporter json ./all-blob-reports
- uses: daun/playwright-report-summary@v3
if: always()
with:
report-file: results.json
android:
runs-on: ubuntu-latest
name: Android
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
cache: "npm"
node-version-file: ".node_version"
- name: Install Dependencies
run: npm ci
- name: Build/Sync JS Bundles
run: |
npm run build
npx cap sync
- uses: actions/setup-java@v5
with:
distribution: "temurin"
java-version-file: ".java-version"
cache: "gradle"
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Run android tests
run: |
cd android/
./gradlew test --stacktrace