-
Notifications
You must be signed in to change notification settings - Fork 1
174 lines (160 loc) · 5.13 KB
/
Copy pathci.yml
File metadata and controls
174 lines (160 loc) · 5.13 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# Continuous Integration pipeline. Edits to this file require admin sign-off
# via CODEOWNERS (see .github/CODEOWNERS).
name: CI
on:
pull_request:
push:
branches: [dev, main]
permissions:
contents: read
# Opt JS actions into Node 24 ahead of GitHub's June 2026 default flip.
# Drop this once the default flip happens and all third-party actions ship
# Node-24-native versions.
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: 'true'
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
defaults:
run:
working-directory: extension
jobs:
typecheck:
name: Type check
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: extension/package-lock.json
- run: npm ci
- run: npm run check-types
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: extension/package-lock.json
- run: npm ci
- run: npm run lint
test:
name: Unit tests
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: extension/package-lock.json
- run: npm ci
- run: npx vitest run
knip:
name: Dead code (knip)
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: extension/package-lock.json
- run: npm ci
- run: npm run knip
build:
name: Build & VSIX package
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: extension/package-lock.json
- run: npm ci
- run: npm run package
- run: npx @vscode/vsce package --no-dependencies
- name: Build Open VSX (clean) variant
run: node esbuild.js --production --variant=openvsx
- name: Verify clean bundle excludes recorder/consent
run: node scripts/verify-clean-bundle.js
viewer-lint:
name: Viewer lint
runs-on: ubuntu-latest
timeout-minutes: 10
defaults:
run:
working-directory: recording-viewer
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: recording-viewer/package-lock.json
- run: npm ci
- run: npm run lint
viewer-test:
name: Viewer unit tests
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: recording-viewer
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: recording-viewer/package-lock.json
- run: npm ci
- run: npx vitest run
viewer-build:
name: Viewer build
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: recording-viewer
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: npm
cache-dependency-path: recording-viewer/package-lock.json
- run: npm ci
- run: npm run build
ci-gate:
name: CI gate
needs: [typecheck, lint, test, knip, build, viewer-lint, viewer-test, viewer-build]
runs-on: ubuntu-latest
timeout-minutes: 1
if: always()
defaults:
run:
working-directory: .
steps:
- name: Verify all required jobs succeeded
env:
NEEDS: ${{ toJSON(needs) }}
run: |
set -euo pipefail
echo "Job results: $NEEDS"
if echo "$NEEDS" | jq -e '[.[] | .result] | any(. != "success")' > /dev/null; then
echo "::error::One or more required CI jobs did not succeed"
exit 1
fi
echo "All CI jobs passed."