-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (51 loc) · 1.73 KB
/
Copy pathci.yml
File metadata and controls
55 lines (51 loc) · 1.73 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
name: ci
on:
push:
pull_request:
permissions:
contents: read
jobs:
api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
with: {version: "0.11.29", enable-cache: true}
- run: make api-install
- run: make api-lint
- run: make api-typecheck
- run: make api-test
- run: make migration-check
- run: make test-integration-stack
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with: {node-version: 22, cache: pnpm}
- run: make web-install
- run: make playwright-install
- run: make web-lint
- run: make web-typecheck
- run: make web-test
- name: React Doctor (full 100/100 gate)
timeout-minutes: 10
run: make react-doctor
- run: make web-production-smoke
- run: make astryx-doctor
- run: make playwright
deployment:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
with: {version: "0.11.29"}
- uses: Azure/setup-helm@9bc31f4ebc9c6b171d7bfbaa5d006ae7abdb4310 # v5
with: {version: "v4.2.3"}
- run: make api-install
- run: make docs-check
- run: make workflow-check
- run: make compose-check ENV_FILE=.env.example
- run: make helm-check
- run: make docker-build