forked from ionic-team/stencil
-
Notifications
You must be signed in to change notification settings - Fork 3
43 lines (35 loc) · 814 Bytes
/
main.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
name: CI
on:
push:
branches:
- 'main'
- 'v3.0.0-dev'
pull_request:
branches:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_core:
name: Build
uses: ./.github/workflows/build.yml
lint_and_format:
name: Lint and Format
uses: ./.github/workflows/lint-and-format.yml
analysis_tests:
name: Analysis Tests
needs: [build_core]
uses: ./.github/workflows/test-analysis.yml
bundler_tests:
name: Bundler Tests
needs: [build_core]
uses: ./.github/workflows/test-bundlers.yml
e2e_tests:
name: E2E Tests
needs: [build_core]
uses: ./.github/workflows/test-e2e.yml
unit_tests:
name: Unit Tests
needs: [build_core]
uses: ./.github/workflows/test-unit.yml