-
Notifications
You must be signed in to change notification settings - Fork 1
104 lines (89 loc) · 3.08 KB
/
ci_test_core.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
name: Test core
on:
workflow_dispatch:
repository_dispatch:
types: [test_core]
push:
branches:
- '**'
tags-ignore:
- '**'
paths:
- '.github/workflows/ci_test_core.yml'
- 'projects/core/**'
concurrency:
group: ci-test-core-group-${{ github.ref }}
cancel-in-progress: true
jobs:
ci_test-core:
uses: dsi-hug/actions/.github/workflows/action.yml@v2
with:
working-directory: projects/core
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]'
node-versions: '[18, 20]'
lint: true
test: true
ci_test_deps:
needs: ci_test-core
runs-on: 'ubuntu-latest'
steps:
#
# Not needed here because it will be triggered by `ci_test_sidenav`
#
# - name: Test test_layout
# uses: peter-evans/repository-dispatch@v3
# with:
# event-type: test_test_layout
- name: Test message-box-dialog
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_message-box-dialog
- name: Test numeric-stepper
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_numeric-stepper
- name: Test overlay
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_overlay
- name: Test search-container
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_search-container
- name: Test sidenav
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_sidenav
- name: Test snackbar
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_snackbar
- name: Test splitter
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_splitter
#
# Not needed here because it will be triggered by `ci_test_snackbar`
#
# - name: Test t_status
# uses: peter-evans/repository-dispatch@v3
# with:
# event-type: test_status
#
# Not needed here because it will be triggered by `ci_test_numeric-stepper`
#
# - name: Test t_time-picker
# uses: peter-evans/repository-dispatch@v3
# with:
# event-type: test_time-picker
- name: Test tooltip
uses: peter-evans/repository-dispatch@v3
with:
event-type: test_tooltip
#
# Not needed here because it will be triggered by `ci_test_tooltip`
#
# - name: Test t_user-tooltip
# uses: peter-evans/repository-dispatch@v3
# with:
# event-type: test_user-tooltip