-
Notifications
You must be signed in to change notification settings - Fork 1
229 lines (224 loc) · 6.53 KB
/
sanity-check.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
name: Sanity Check
on:
push:
branches:
- main
paths:
- 'src/**'
- '.github/workflows/sanity-check.yml'
- 'lombok.config'
- 'pom.xml'
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- labeled
jobs:
install:
name: Install
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout Repository
id: checkout-repository
uses: actions/checkout@v4
- name: Setup Java
id: setup-java
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build Project
id: build-project
run: mvn clean install -DskipTests -DskipReports
dry-run:
name: Dry Run
runs-on: ubuntu-latest
needs: [ install ]
timeout-minutes: 30
steps:
- name: Checkout Repository
id: checkout-repository
uses: actions/checkout@v4
- name: Setup Java
id: setup-java
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Execute Cucumber Dry Run
id: dry-run
run: mvn verify -Dit.test=DryRunRunnerIT -DskipReports
chrome-tests:
name: Chrome Sanity Check
runs-on: ubuntu-latest
needs: [ install, dry-run ]
timeout-minutes: 30
services:
rbp-booking:
image: mwinteringham/restfulbookerplatform_booking:1.6.24c7b22
ports:
- 3000:3000
rbp-room:
image: mwinteringham/restfulbookerplatform_room:1.6.24c7b22
ports:
- 3001:3001
rbp-branding:
image: mwinteringham/restfulbookerplatform_branding:1.6.24c7b22
ports:
- 3002:3002
rbp-assets:
image: mwinteringham/restfulbookerplatform_assets:1.6.24c7b22
ports:
- 3003:3003
rbp-auth:
image: mwinteringham/restfulbookerplatform_auth:1.6.24c7b22
ports:
- 3004:3004
rbp-report:
image: mwinteringham/restfulbookerplatform_report:1.6.24c7b22
ports:
- 3005:3005
rbp-message:
image: mwinteringham/restfulbookerplatform_message:1.6.24c7b22
ports:
- 3006:3006
rbp-proxy:
image: mwinteringham/restfulbookerplatform_proxy:latest
ports:
- 80:80
steps:
- name: Checkout Repository
id: checkout-repository
uses: actions/checkout@v4
- name: Setup Java
id: setup-java
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Setup Chrome
id: setup-chrome
uses: browser-actions/setup-chrome@v1
with:
chrome-version: latest
- name: Run Chrome Tests
id: run-chrome-tests
run: mvn clean verify -Dtags='(@sanity) and (not @bug and not @skip)' -DparallelCount=3 -Denv=github -Dbrowser=chrome -Dheadless -Dremote=false
- name: Upload Cucumber HTML Report
id: upload-cucumber-html-report
uses: actions/upload-artifact@v4
if: always()
with:
name: chrome-cucumber-html-report
path: target/cucumber/cucumber-html-reports/
if-no-files-found: ignore
retention-days: 1
- name: Upload Cluecumber Report
id: upload-cluecumber-report
uses: actions/upload-artifact@v4
if: always()
with:
name: chrome-cluecumber-report
path: target/cucumber/cluecumber-report/
if-no-files-found: ignore
retention-days: 1
- name: Upload Chrome Tests Logs
id: upload-test-logs
uses: actions/upload-artifact@v4
if: always()
with:
name: chrome-tests-logs
path: logs/
if-no-files-found: ignore
retention-days: 1
firefox-tests:
name: Firefox Sanity Check
runs-on: ubuntu-latest
needs: [ install, dry-run ]
timeout-minutes: 30
services:
rbp-booking:
image: mwinteringham/restfulbookerplatform_booking:1.6.24c7b22
ports:
- 3000:3000
rbp-room:
image: mwinteringham/restfulbookerplatform_room:1.6.24c7b22
ports:
- 3001:3001
rbp-branding:
image: mwinteringham/restfulbookerplatform_branding:1.6.24c7b22
ports:
- 3002:3002
rbp-assets:
image: mwinteringham/restfulbookerplatform_assets:1.6.24c7b22
ports:
- 3003:3003
rbp-auth:
image: mwinteringham/restfulbookerplatform_auth:1.6.24c7b22
ports:
- 3004:3004
rbp-report:
image: mwinteringham/restfulbookerplatform_report:1.6.24c7b22
ports:
- 3005:3005
rbp-message:
image: mwinteringham/restfulbookerplatform_message:1.6.24c7b22
ports:
- 3006:3006
rbp-proxy:
image: mwinteringham/restfulbookerplatform_proxy:latest
ports:
- 80:80
steps:
- name: Checkout Repository
id: checkout-repository
uses: actions/checkout@v4
- name: Setup Java
id: setup-java
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Setup Firefox
id: setup-firefox
uses: browser-actions/setup-firefox@v1
with:
firefox-version: latest
- name: Run Firefox Tests
id: run-firefox-tests
run: mvn clean verify -Dtags='(@sanity) and (not @bug and not @skip)' -DparallelCount=3 -Denv=github -Dbrowser=firefox -Dheadless -Dremote=false
- name: Upload Cucumber HTML Report
id: upload-cucumber-html-report
uses: actions/upload-artifact@v4
if: always()
with:
name: firefox-cucumber-html-report
path: target/cucumber/cucumber-html-reports/
if-no-files-found: ignore
retention-days: 1
- name: Upload Cluecumber Report
id: upload-cluecumber-report
uses: actions/upload-artifact@v4
if: always()
with:
name: firefox-cluecumber-report
path: target/cucumber/cluecumber-report/
if-no-files-found: ignore
retention-days: 1
- name: Upload Firefox Tests Logs
id: upload-test-logs
uses: actions/upload-artifact@v4
if: always()
with:
name: firefox-tests-logs
path: logs/
if-no-files-found: ignore
retention-days: 1