-
Notifications
You must be signed in to change notification settings - Fork 24
49 lines (39 loc) · 1.08 KB
/
e2e-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
name: multi-example - e2e tests
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
pull-requests: read
jobs:
run-playwright-tests:
name: Playwright Tests
runs-on: ubuntu-latest
container: node:20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack and Setup PNPM
run: |
corepack enable
corepack prepare [email protected] --activate
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Install Chromium Browser
run: pnpm playwright install --with-deps chromium
- name: Build Projects
run: pnpm build
- name: Start Application multi-example
run: nohup pnpm run multi-example & pnpm exec wait-on http://localhost:5173;
- name: Run Playwright Tests
run: pnpm playwright test
- name: Upload Artifacts on Failure
if: failure()
uses: actions/upload-artifact@v4
with:
name: test-results
path: reports/e2e/output
retention-days: 3