-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (90 loc) · 2.6 KB
/
ci.yml
File metadata and controls
105 lines (90 loc) · 2.6 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
93
94
95
96
97
98
99
100
101
102
103
104
105
name: CI
on:
push:
branches: [master]
pull_request:
permissions:
contents: read
jobs:
test:
name: test (node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install root tooling
run: npm install --no-audit --no-fund
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Install + build engine
working-directory: engine
run: |
npm install --no-audit --no-fund
npx tsc --noEmit
npm run build
- name: Install + build generators (must be built before bundles depend on them)
run: |
set -e
for d in generators/*/; do
echo "::group::$(basename "$d") install+build"
(
cd "$d"
npm install --no-audit --no-fund
if grep -q '"build"' package.json; then npm run build; fi
)
echo "::endgroup::"
done
- name: Install + build bundles
run: |
set -e
for d in bundles/*/; do
echo "::group::$(basename "$d") install+build"
(
cd "$d"
npm install --no-audit --no-fund
if grep -q '"build"' package.json; then npm run build; fi
)
echo "::endgroup::"
done
- name: Test engine
working-directory: engine
run: npm test
- name: Test bundles
run: |
set -e
for d in bundles/*/; do
echo "::group::$(basename "$d") test"
(
cd "$d"
if grep -q '"test"' package.json; then npm test; fi
)
echo "::endgroup::"
done
- name: Test generators
run: |
set -e
for d in generators/*/; do
echo "::group::$(basename "$d") test"
(
cd "$d"
if grep -q '"test"' package.json; then npm test; fi
)
echo "::endgroup::"
done
- name: Smoke test (generate)
working-directory: examples/ts-basic-service
run: |
node ../../engine/bin/fixedcode.js generate ts-service.yaml -o /tmp/smoke
- name: npm audit (engine, advisory)
working-directory: engine
run: npm audit --audit-level=high
continue-on-error: true