-
Notifications
You must be signed in to change notification settings - Fork 3
286 lines (253 loc) · 10.6 KB
/
Copy pathbuild-test.yaml
File metadata and controls
286 lines (253 loc) · 10.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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
name: 'CI: Lint, Build & Test'
on:
push:
branches: [main]
paths:
- 'src/**'
- 'package.json'
- 'package-lock.json'
- 'tsconfig.json'
- 'eslint.config.mjs'
- 'action.yaml'
- 'dist/**'
- '.github/workflows/**'
pull_request:
branches: [main]
paths:
- 'src/**'
- 'package.json'
- 'package-lock.json'
- 'tsconfig.json'
- 'eslint.config.mjs'
- 'action.yaml'
- 'dist/**'
- '.github/workflows/**'
workflow_dispatch:
jobs:
# ===========================================================================
# Build & lint — all test jobs depend on this
# ===========================================================================
build:
name: Build & Lint
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24.x'
- run: npm ci
- run: npm run lint
- run: npm run build
# ===========================================================================
# Test: Dispatch a workflow by its display name, with inputs
# ===========================================================================
test-dispatch-by-name:
name: 'Test: Dispatch by name'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dispatch echo-1 by name
id: dispatch
uses: ./
with:
workflow: Message Echo 1
inputs: '{"message": "hello from name test"}'
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
- name: Assert outputs are set
env:
RUN_ID: ${{ steps.dispatch.outputs.runId }}
WORKFLOW_ID: ${{ steps.dispatch.outputs.workflowId }}
RUN_URL: ${{ steps.dispatch.outputs.runUrl }}
RUN_URL_HTML: ${{ steps.dispatch.outputs.runUrlHtml }}
run: |
echo "runId=$RUN_ID workflowId=$WORKFLOW_ID"
echo "runUrl=$RUN_URL"
echo "runUrlHtml=$RUN_URL_HTML"
[[ -n "$RUN_ID" ]] || { echo "FAIL: runId empty"; exit 1; }
[[ -n "$WORKFLOW_ID" ]] || { echo "FAIL: workflowId empty"; exit 1; }
[[ -n "$RUN_URL" ]] || { echo "FAIL: runUrl empty"; exit 1; }
[[ -n "$RUN_URL_HTML" ]] || { echo "FAIL: runUrlHtml empty"; exit 1; }
# ===========================================================================
# Test: Dispatch a workflow by its filename (short form)
# ===========================================================================
test-dispatch-by-filename:
name: 'Test: Dispatch by filename'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dispatch echo-2 by filename
uses: ./
with:
workflow: echo-2.yaml
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
# ===========================================================================
# Test: Dispatch a workflow by its full path
# ===========================================================================
test-dispatch-by-path:
name: 'Test: Dispatch by full path'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dispatch echo-2 by full path
uses: ./
with:
workflow: .github/workflows/echo-2.yaml
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
# ===========================================================================
# Test: Dispatch a workflow by its numeric ID
# ===========================================================================
test-dispatch-by-id:
name: 'Test: Dispatch by ID'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# NOTE: This ID is specific to this repo's echo-1 workflow.
# If the workflow file is deleted & recreated, this ID will change.
- name: Dispatch echo-1 by numeric ID
uses: ./
with:
workflow: '78181717'
inputs: '{"message": "dispatched by id"}'
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
# ===========================================================================
# Test: Wait for completion on a slow workflow (success case)
# ===========================================================================
test-wait-completion:
name: 'Test: Wait for completion'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dispatch echo-2 and wait for it to finish
uses: ./
with:
workflow: echo-2.yaml
wait-for-completion: true
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
# ===========================================================================
# Test: sync-status mirrors a successful workflow conclusion
# ===========================================================================
test-sync-status-success:
name: 'Test: Sync status (success)'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dispatch echo-1 with wait + sync-status
uses: ./
with:
workflow: Message Echo 1
inputs: '{"message": "sync status success test"}'
wait-for-completion: true
sync-status: true
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
# ===========================================================================
# Test: sync-status propagates a failing workflow as a failure
# ===========================================================================
test-sync-status-failure:
name: 'Test: Sync status (failure)'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dispatch echo-3 (always fails) with sync-status
id: dispatch-fail
continue-on-error: true
uses: ./
with:
workflow: echo-3.yaml
wait-for-completion: true
sync-status: true
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
- name: Assert action reported failure
run: |
if [[ "${{ steps.dispatch-fail.outcome }}" != "failure" ]]; then
echo "FAIL: Expected action to fail when sync-status mirrors a failing workflow"
exit 1
fi
echo "PASS: Action correctly propagated failure"
# ===========================================================================
# Test: Invalid workflow reference produces an error
# ===========================================================================
test-invalid-workflow:
name: 'Test: Invalid workflow name'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Dispatch a workflow that does not exist
id: bad-workflow
continue-on-error: true
uses: ./
with:
workflow: this-workflow-does-not-exist.yaml
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
- name: Assert action failed
run: |
if [[ "${{ steps.bad-workflow.outcome }}" != "failure" ]]; then
echo "FAIL: Expected action to fail for non-existent workflow"
exit 1
fi
echo "PASS: Action correctly failed for invalid workflow reference"
# ===========================================================================
# Test: Wait timeout fires before a slow workflow finishes
# ===========================================================================
test-wait-timeout:
name: 'Test: Wait timeout'
needs: build
runs-on: ubuntu-latest
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# echo-2 sleeps for 11s — a 1-second timeout will trigger after the
# first poll cycle (~5s). The action warns but does NOT fail on timeout.
- name: Dispatch echo-2 with 1-second timeout
uses: ./
with:
workflow: echo-2.yaml
wait-for-completion: true
wait-timeout-seconds: 1
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}