-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (69 loc) · 2.01 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
name: Test core
on:
workflow_dispatch:
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/action/.github/workflows/action.yml@v1
with:
working-directory: projects/core
runs-on: '["ubuntu-latest", "macos-latest", "windows-latest"]'
node-versions: '[18, 20]'
#
# Not needed here because it will be triggered by `ci_test_sidenav`
#
# ci_test_layout:
# needs: ci_test_core
# uses: ./.github/workflows/ci_test_layout.yml
ci_test_message-box-dialog:
needs: ci_test_core
uses: ./.github/workflows/ci_test_message-box-dialog.yml
ci_test_numeric-stepper:
needs: ci_test_core
uses: ./.github/workflows/ci_test_numeric-stepper.yml
ci_test_overlay:
needs: ci_test_core
uses: ./.github/workflows/ci_test_overlay.yml
ci_test_search-container:
needs: ci_test_core
uses: ./.github/workflows/ci_test_search-container.yml
ci_test_sidenav:
needs: ci_test_core
uses: ./.github/workflows/ci_test_sidenav.yml
ci_test_snackbar:
needs: ci_test_core
uses: ./.github/workflows/ci_test_snackbar.yml
ci_test_splitter:
needs: ci_test_core
uses: ./.github/workflows/ci_test_splitter.yml
#
# Not needed here because it will be triggered by `ci_test_snackbar`
#
# ci_test_status:
# needs: ci_test_core
# uses: ./.github/workflows/ci_test_status.yml
#
# Not needed here because it will be triggered by `ci_test_numeric-stepper`
#
# ci_test_time-picker:
# needs: ci_test_core
# uses: ./.github/workflows/ci_test_time-picker.yml
ci_test_tooltip:
needs: ci_test_core
uses: ./.github/workflows/ci_test_tooltip.yml
#
# Not needed here because it will be triggered by `ci_test_tooltip`
#
# ci_test_user-tooltip:
# needs: ci_test_core
# uses: ./.github/workflows/ci_test_user-tooltip.yml