-
Notifications
You must be signed in to change notification settings - Fork 606
117 lines (110 loc) · 3.41 KB
/
pr-filter-stubs.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
name: PR Filter Stubs
on:
pull_request:
paths:
- '**/*.md'
- '**/*.yml'
jobs:
prFilter:
runs-on: ubuntu-latest
outputs:
success: ${{ steps.filter.outputs.result }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Filter
id: filter
uses: DevExpress/github-actions/pr-filter@main
with:
paths: '**;!**/*.md;!**/*.yml'
testcafe:
name: ${{ matrix.jobName }}
needs: [ prFilter ]
if: needs.prFilter.outputs.success != 'true'
runs-on: ubuntu-latest
strategy:
matrix:
jobName:
# qunit_tests-additional-renovation.qunit-tests-mobile-and-shadow-dom
- 'ui.htmlEditor-android6'
- 'ui.htmlEditor-firefox'
# qunit_tests-renovation.qunit-tests
- 'Constel export'
- 'Constel misc'
- 'Constel ui'
- 'Constel ui.widgets(1/2)'
- 'Constel ui.widgets(2/2)'
- 'Constel ui.editors'
- 'Constel ui.htmlEditor'
- 'Constel ui.grid'
- 'Constel ui.scheduler(1/2)'
- 'Constel ui.scheduler(2/2)'
- 'Constel viz'
- 'Constel renovation'
# testcafe_tests.testcafe
- 'accessibility (1/5)'
- 'accessibility (2/5)'
- 'accessibility (3/5)'
- 'accessibility (4/5)'
- 'accessibility (5/5)'
- 'accessibility - material (1/7)'
- 'accessibility - material (2/7)'
- 'accessibility - material (3/7)'
- 'accessibility - material (4/7)'
- 'accessibility - material (5/7)'
- 'accessibility - material (6/7)'
- 'accessibility - material (7/7)'
- 'accessibility - fluent (1/7)'
- 'accessibility - fluent (2/7)'
- 'accessibility - fluent (3/7)'
- 'accessibility - fluent (4/7)'
- 'accessibility - fluent (5/7)'
- 'accessibility - fluent (6/7)'
- 'accessibility - fluent (7/7)'
- 'common'
- 'common - material'
- 'common - fluent'
- 'treeList'
- 'dataGrid (1/2)'
- 'dataGrid (2/2)'
- 'pivotGrid'
- 'pivotGrid - material'
- 'pivotGrid - fluent'
- 'scheduler (1/5)'
- 'scheduler (2/5)'
- 'scheduler (3/5)'
- 'scheduler (4/5)'
- 'scheduler (5/5)'
- 'scheduler (Europe/Berlin)'
- 'scheduler (America/Los_Angeles)'
- 'form (1/2)'
- 'form (2/2)'
- 'form - material (1/2)'
- 'form - material (2/2)'
- 'form - fluent (1/2)'
- 'form - fluent (2/2)'
- 'editors (1/2)'
- 'editors (2/2)'
- 'editors - material (1/2)'
- 'editors - material (2/2)'
- 'editors - fluent (1/2)'
- 'editors - fluent (2/2)'
- 'htmlEditor'
- 'htmlEditor - material'
- 'htmlEditor - fluent'
- 'navigation'
- 'navigation - material'
- 'navigation - fluent'
- 'fileManager'
- 'fileManager - material'
- 'fileManager - fluent'
- 'filterBuilder'
- 'filterBuilder - material'
- 'filterBuilder - fluent'
- 'pager'
- 'pager - material'
- 'pager - fluent'
steps:
- run: echo '${{ matrix.jobName }} stub'