-
-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (44 loc) · 916 Bytes
/
ci.yml
File metadata and controls
53 lines (44 loc) · 916 Bytes
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: CI
on:
push:
branches:
- main
- v[0-9]+
tags:
- v[0-9]+.[0-9]+.[0-9]+*
pull_request:
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build
uses: ./.github/workflows/ci-build.yml
with:
os: 'ubuntu-latest'
lint:
name: Lint
needs: [build]
uses: ./.github/workflows/ci-lint.yml
typecheck:
name: Typecheck
needs: [build]
uses: ./.github/workflows/ci-typecheck.yml
unit:
name: Unit
needs: [build]
uses: ./.github/workflows/ci-unit.yml
e2e:
name: E2E
needs: [build]
uses: ./.github/workflows/ci-e2e.yml
compatibility:
name: Compatibility
needs: [build]
uses: ./.github/workflows/ci-e2e.yml
with:
compatibility-mode: 'yes'
smoke:
name: Smoke
needs: [build, e2e]
uses: ./.github/workflows/ci-smoke.yml