-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (40 loc) · 1.16 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
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:
if: "${{ !contains(github.event.head_commit.message, 'chore(release): publish') }}"
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]'
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_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
ci_test_status:
needs: ci_test_core
uses: ./.github/workflows/ci_test_status.yml
ci_test_time-picker:
needs: ci_test_core
uses: ./.github/workflows/ci_test_time-picker.yml