-
Notifications
You must be signed in to change notification settings - Fork 91
364 lines (292 loc) · 9.08 KB
/
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
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
name: Playwright Tests
on:
# Add the triggers as required
push:
branches:
- '**'
pull_request:
branches:
- '**'
schedule:
# * is a special character in YAML so you have to quote this string
# This example triggers the workflow every day at 9:00 AM
- cron: '0 9 * * *'
# Trigger the workflow manually
workflow_dispatch:
env:
LT_USERNAME: ${{ secrets.LT_USERNAME }}
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }}
jobs:
playwright-smart-ui:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 10
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Step for push event
run: |
echo "This is a push event!"
echo "The latest commitId $(git log -1 --format='%H')"
echo "COMMIT_ID=$(git log -1 --format='%H')" >> $GITHUB_ENV
if: github.event_name == 'push'
- name: Step for pull_request event
run: |
echo "This is a pull_request event!"
git log -n 5 --format="%H %an %s" | while read line; do echo "$line"; done
echo "The latest commitId $(git log -n 2 --format='%H' | tail -n 1)"
echo "COMMIT_ID=$(git log -n 2 --format='%H' | tail -n 1)" >> $GITHUB_ENV
if: github.event_name == 'pull_request'
- name: Create Github URL
run: |
API_HOST=https://api.github.com
echo "The latest commitId is $COMMIT_ID"
GITHUB_URL=$API_HOST/repos/$GITHUB_REPOSITORY/statuses/$COMMIT_ID
echo "GITHUB_URL: $GITHUB_URL"
echo "GITHUB_URL=$GITHUB_URL" >> $GITHUB_ENV
- name: Execute Playwright SmartUI Test
run: npm run test-smartui
playwright-single-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Execute Playwright Single Test
run: npm run test
playwright-parallel:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Execute Playwright Parallel Tests
run: npm run test-parallel
playwright-android:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Execute Playwright Android Real Device Test
run: npm run test-android
playwright-extension:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Execute Playwright Extension Test
run: npm run test-extension
playwright-iphone-emulation:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Execute Playwright iPhone Emulation Test
run: npm run test-iPhone-emulation
playwright-lighthouse:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Execute Playwright LightHouse Test
run: npm run test-lighthouse-report
playwright-cucumber-js:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playwright-cucumber-js
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Execute Playwright Cucumber JS Test
run: npm run test
playwright-java:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playwright-java
steps:
- uses: actions/checkout@v3
- name: Execute Playwright Java Test
run: mvn -Dexec.mainClass="com.lambdatest.PlaywrightTestSingle" -Dexec.classpathScope=test test-compile exec:java
playwright-java-junit:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playwright-java-junit
steps:
- uses: actions/checkout@v3
- name: Execute Playwright Java JUnit Test
run: mvn clean test
playwright-jest-js:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playwright-jest-js
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Install missing Playwright Dependencies
run: npx playwright install-deps
- name: Execute Playwright Cucumber Jest Test
run: npm test
playwright-test-js:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playwright-test-js
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Install Playwright Browsers
run: npx playwright install
- name: Install missing Playwright Dependencies
run: npx playwright install-deps
- name: Execute Playwright Test JS
run: npm run test
- name: Execute Playwright Test JS on Android
run: npm run testAndroid
playwright-test-ts:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playwright-test-ts
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Install Playwright Browsers
run: npx playwright install
- name: Install missing Playwright Dependencies
run: npx playwright install-deps
- name: Execute Playwright Test TS
run: npm run test
playwright-python:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./playwright-python
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip3 install playwright==1.39.0
- name: Execute Playwright Python GetTestDetails
run: python3 get_test_details_python_sample.py
- name: Execute Playwright Python iPhone Emulation
run: python3 playwright_sample_on_iphone.py
- name: Execute Playwright Python Sample Test
run: python3 playwright_sample.py
- name: Execute Playwright Python Lighthouse Test
run: python3 playwright_lighthouse_sample.py
playwright-csharp:
runs-on: windows-latest
defaults:
run:
working-directory: ./playwright-csharp
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0'
- run: dotnet build
- name: Execute Playwright CSharp Single Test
run: dotnet run single
- name: Execute Playwright CSharp iPhone Test
run: dotnet run iphonetest
- name: Execute Playwright CSharp iPad Test
run: dotnet run ipadtest
playwright-csharp-specflow:
runs-on: windows-latest
defaults:
run:
working-directory: ./playwright-csharp-specflow-xunit
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0'
- run: dotnet build
- name: Execute Playwright CSharp Specflow Tests
run: dotnet test