forked from finos/architecture-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
92 lines (77 loc) · 2.51 KB
/
build-calm-guard.yml
File metadata and controls
92 lines (77 loc) · 2.51 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
86
87
88
89
90
91
92
name: Build CALM Guard
permissions:
contents: read
on:
pull_request:
branches:
- 'main'
- 'release*'
paths:
- 'calm-suite/calm-guard/**'
- '.github/workflows/build-calm-guard.yml'
- 'package.json'
- 'package-lock.json'
push:
branches:
- 'main'
- 'release*'
paths:
- 'calm-suite/calm-guard/**'
- '.github/workflows/build-calm-guard.yml'
- 'package.json'
- 'package-lock.json'
jobs:
lint:
name: Lint & Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 22
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint --workspace=calmguard
- name: Typecheck
run: npm run typecheck --workspace=calmguard
test:
name: Test
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 22
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test:run --workspace=calmguard
build:
name: Build
runs-on: ubuntu-latest
needs: test
env:
NEXT_SKIP_VALIDATE: "1"
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 22
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build --workspace=calmguard