-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (37 loc) · 1.17 KB
/
std_ui_latest_chrome.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
# This workflow calls the master UI workflow with custom variables
# It will test all Epinio parts
name: STD-UI-Latest-Chrome
on:
workflow_dispatch:
schedule:
- cron: '0 4 * * *'
# I do not know if I can refactor with a matrix in a reusable workflow?
jobs:
menu-tests:
uses: ./.github/workflows/master_std_ui.yml
with:
browser: chrome
cypress_docker: cypress/included:10.11.0
cypress_spec: cypress/e2e/unit_tests/menu.spec.ts
secrets: inherit
configurations-tests:
uses: ./.github/workflows/master_std_ui.yml
with:
browser: chrome
cypress_docker: cypress/included:10.11.0
cypress_spec: cypress/e2e/unit_tests/configurations.spec.ts
secrets: inherit
applications-tests:
uses: ./.github/workflows/master_std_ui.yml
with:
browser: chrome
cypress_docker: cypress/included:10.11.0
cypress_spec: cypress/e2e/unit_tests/applications.spec.ts
secrets: inherit
namespaces-tests:
uses: ./.github/workflows/master_std_ui.yml
with:
browser: chrome
cypress_docker: cypress/included:10.11.0
cypress_spec: cypress/e2e/unit_tests/namespaces.spec.ts
secrets: inherit