We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3698dd9 commit 8a37599Copy full SHA for 8a37599
1 file changed
.github/workflows/integration.yml
@@ -269,11 +269,24 @@ jobs:
269
ref: ${{ inputs.ref || github.event.pull_request.head.sha || github.sha }}
270
271
- name: "test(cli): run a slack cli version check"
272
+ id: version
273
uses: ./cli
274
with:
275
command: "version"
276
version: "3.14.0"
277
278
+ - name: "test(cli): confirm the version check outputs"
279
+ shell: bash
280
+ run: |
281
+ set -ex
282
+ [ "$CLI_OK" = "true" ]
283
+ echo "$CLI_TIME" | grep -qE '^[0-9]+$'
284
+ [ -n "$CLI_RESPONSE" ]
285
+ env:
286
+ CLI_OK: ${{ steps.version.outputs.ok }}
287
+ CLI_RESPONSE: ${{ steps.version.outputs.response }}
288
+ CLI_TIME: ${{ steps.version.outputs.time }}
289
+
290
- name: "chore: configure the actioneering application"
291
shell: bash
292
run: mv .github/resources/.slack .slack
0 commit comments