-
Notifications
You must be signed in to change notification settings - Fork 54
74 lines (71 loc) · 2 KB
/
e2e.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
name: e2e tests
on:
pull_request:
push:
branches: [main]
jobs:
test:
name: "E2E tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
site: [astro, preact, qwik, react, solid, vue, webc]
steps:
- run: echo Running tests in ${{ matrix.site }}
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: latest
cache: "pnpm"
check-latest: true
registry-url: "https://registry.npmjs.org"
- name: Setup Deno
uses: denoland/setup-deno@v1
- name: Install dependencies
run: |
corepack enable
pnpm install
- name: Install Netlify CLI
run: pnpm install -g netlify-cli
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run tests
run: npx playwright test
env:
SITE: ${{ matrix.site }}
NETLIFY: 1
- name: Upload test report
if: always()
uses: actions/upload-artifact@v4
with:
name: blob-report-${{ matrix.site }}
path: blob-report
retention-days: 1
merge-reports:
if: always()
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- name: Download blob reports from GitHub Actions Artifacts
uses: actions/download-artifact@v4
with:
path: all-blob-reports
pattern: blob-report-*
merge-multiple: true
- name: Merge into HTML Report
run:
npx playwright merge-reports --reporter html,github ./all-blob-reports
- name: Upload HTML report
uses: actions/upload-artifact@v4
with:
name: html-report--attempt-${{ github.run_attempt }}
path: playwright-report
retention-days: 14