-
Notifications
You must be signed in to change notification settings - Fork 794
53 lines (45 loc) · 1.13 KB
/
main-esbuild.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
name: esbuild CI
on:
push:
branches:
- 'main'
pull_request:
branches:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_core:
name: Build
uses: ./.github/workflows/build-esbuild.yml
analysis_tests:
name: Analysis Tests (Esbuild)
needs: [build_core]
uses: ./.github/workflows/test-analysis.yml
with:
build_name: stencil-core-esbuild
bundler_tests:
name: Bundler Tests (Esbuild)
needs: [build_core]
uses: ./.github/workflows/test-bundlers.yml
with:
build_name: stencil-core-esbuild
component_starter_tests:
name: Component Starter Smoke Test (Esbuild)
needs: [build_core]
uses: ./.github/workflows/test-component-starter.yml
with:
build_name: stencil-core-esbuild
e2e_tests:
name: E2E Tests (Esbuild)
needs: [build_core]
uses: ./.github/workflows/test-e2e.yml
with:
build_name: stencil-core-esbuild
unit_tests:
name: Unit Tests (Esbuild)
needs: [build_core]
uses: ./.github/workflows/test-unit.yml
with:
build_name: stencil-core-esbuild