-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (45 loc) · 1.26 KB
/
e2e-tests.yml
File metadata and controls
56 lines (45 loc) · 1.26 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
name: E2E Tests
on:
pull_request:
workflow_dispatch:
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Prepare
uses: ./.github/actions/prepare
- name: Setup E2E Environment
uses: ./.github/actions/setup-e2e-env
- name: Install Templates Dependencies
run: ./scripts/install-deps
- name: Run emulator
run: |
set -e
juno emulator start --headless &
juno emulator wait
juno login --emulator --mode development --headless
juno config apply --mode development --headless
- name: Run tests
run: ./scripts/e2e e2e:ci
- name: Upload Playwright report on failure
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 3
- name: Upload Playwright results on failure
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: test-results
path: test-results/
retention-days: 3
may-merge:
needs: ['e2e']
runs-on: ubuntu-latest
steps:
- name: Cleared for merging
run: echo OK