-
-
Notifications
You must be signed in to change notification settings - Fork 31
102 lines (87 loc) · 2.43 KB
/
end-to-end-tests.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
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
name: End-to-end Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
install-cypress-webifc:
runs-on: ubuntu-22.04-4vcpu-16gb
steps:
- name: checkout
id: checkout
uses: actions/checkout@v3
- name: Install Cypress WebIfc
id: install-cypress-webifc
uses: cypress-io/github-action@v6
with:
runTests: false
build: yarn build-share-webifc
- name: Save build artifacts
id: build-artifacts
uses: actions/upload-artifact@v3
with:
name: build-webifc-${{ github.sha }}
if-no-files-found: error
path: docs/
run-cypress-on-linux-webifc:
runs-on: ubuntu-22.04-4vcpu-16gb
needs: install-cypress-webifc
steps:
- name: checkout
id: checkout
uses: actions/checkout@v3
- name: Restore build artifacts
id: restore-artifacts
uses: actions/download-artifact@v3
with:
name: build-webifc-${{ github.sha }}
path: docs/
- name: E2E Tests on Google Chrome
id: e2e-on-google-chrome
uses: cypress-io/github-action@v6
with:
browser: chrome
start: yarn serve-share-webifc
install-cypress-conway:
runs-on: ubuntu-22.04-4vcpu-16gb
needs: run-cypress-on-linux-webifc
steps:
- name: checkout
id: checkout
uses: actions/checkout@v3
- name: Install Cypress Conway
id: install-cypress-conway
uses: cypress-io/github-action@v6
with:
runTests: false
build: yarn build-share-conway
- name: Save build artifacts
id: build-artifacts
uses: actions/upload-artifact@v3
with:
name: build-conway-${{ github.sha }}
if-no-files-found: error
path: docs/
run-cypress-on-linux-conway:
runs-on: ubuntu-22.04-4vcpu-16gb
needs: install-cypress-conway
steps:
- name: checkout
id: checkout
uses: actions/checkout@v3
- name: Restore build artifacts
id: restore-artifacts
uses: actions/download-artifact@v3
with:
name: build-conway-${{ github.sha }}
path: docs/
- name: E2E Tests on Google Chrome
id: e2e-on-google-chrome
uses: cypress-io/github-action@v6
with:
browser: chrome
start: yarn serve-share-conway