-
-
Notifications
You must be signed in to change notification settings - Fork 4
85 lines (71 loc) · 1.83 KB
/
ci.yml
File metadata and controls
85 lines (71 loc) · 1.83 KB
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
85
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
permissions:
contents: read
pull-requests: write
jobs:
build:
name: Build
uses: ./.github/workflows/ci-build.yml
with:
os: 'ubuntu-latest'
lint:
name: Static code analysis
uses: ./.github/workflows/ci-lint.yml
typecheck:
name: Typecheck
needs: [lint, build]
uses: ./.github/workflows/ci-typecheck.yml
license-check:
name: License Check
needs: [lint, build]
uses: ./.github/workflows/ci-license.yml
unit:
name: Unit
needs: [lint, build]
uses: ./.github/workflows/ci-unit.yml
e2e:
name: E2E
needs: [lint, build]
uses: ./.github/workflows/ci-e2e.yml
compatibility:
name: Compatibility
needs: [lint, build]
uses: ./.github/workflows/ci-e2e.yml
with:
compatibility-mode: 'yes'
smoke-config:
name: Smoke - Update Config
needs: [lint, build, unit, license-check, typecheck, e2e]
uses: ./.github/workflows/ci-smoke.yml
with:
scenario: 'config'
smoke-timeout:
name: Smoke - Worker idle timeout
needs: [lint, build, unit, license-check, typecheck, e2e]
uses: ./.github/workflows/ci-smoke.yml
with:
scenario: 'timeout'
smoke-env:
name: Smoke - Load .env files
needs: [lint, build, unit, license-check, typecheck, e2e]
uses: ./.github/workflows/ci-smoke.yml
with:
scenario: 'env'
smoke-retro-wdio:
name: Smoke - Run test with temporary configuration file when lower version of WDIO
needs: [lint, build, unit, license-check, typecheck, e2e]
uses: ./.github/workflows/ci-smoke.yml
with:
os: "['windows-latest']"
scenario: 'retro-wdio-win'