-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (65 loc) · 1.88 KB
/
ci-nightly.yml
File metadata and controls
76 lines (65 loc) · 1.88 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
# =============================================================================
# CI Nightly — scheduled deep regression lane.
# Runs at 03:25 UTC daily and on manual dispatch.
# Shifts expensive suites off the PR critical path.
# Topology context documented in ci-required.yml header.
# =============================================================================
name: CI Nightly
on:
schedule:
- cron: '25 3 * * *'
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
openapi-guardrail:
name: OpenAPI Guardrail
uses: ./.github/workflows/reusable-openapi-guardrail.yml
with:
dotnet-version: 8.0.x
developer-portal:
name: Developer Portal
uses: ./.github/workflows/reusable-developer-portal.yml
with:
dotnet-version: 8.0.x
node-version: 24.13.1
backend-solution:
name: Backend Solution Regression
uses: ./.github/workflows/reusable-backend-solution.yml
with:
dotnet-version: 8.0.x
e2e-smoke:
name: E2E Smoke
needs:
- backend-solution
uses: ./.github/workflows/reusable-e2e-smoke.yml
with:
dotnet-version: 8.0.x
node-version: 24.13.1
load-concurrency-harness:
name: Load and Concurrency Harness
needs:
- backend-solution
uses: ./.github/workflows/reusable-load-concurrency-harness.yml
with:
dotnet-version: 8.0.x
node-version: 24.13.1
k6-vus: "20"
k6-duration: "90s"
k6-user-pool: "6"
e2e-cross-browser:
name: E2E Cross-Browser Matrix
needs:
- backend-solution
uses: ./.github/workflows/reusable-e2e-cross-browser.yml
with:
dotnet-version: 8.0.x
node-version: 24.13.1
container-images:
name: Container Images Regression
needs:
- backend-solution
uses: ./.github/workflows/reusable-container-images.yml