File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ defaults:
13
13
shell : bash
14
14
15
15
jobs :
16
- build :
16
+ test :
17
17
runs-on : ['self-hosted', '1ES.Pool=TypeScript-1ES-GitHub-XL', '1ES.ImageOverride=mariner-2.0']
18
18
steps :
19
19
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
24
24
node-version : ' lts/*'
25
25
- uses : ./.github/actions/setup-go
26
26
with :
27
- cache-name : merge-queue-build
27
+ cache-name : merge-queue-test
28
28
29
29
- run : npm ci
30
30
- run : npx hereby test:all
31
+
32
+ required :
33
+ runs-on : ubuntu-latest
34
+ if : ${{ always() }}
35
+ needs :
36
+ - test
37
+
38
+ steps :
39
+ - name : Check required jobs
40
+ env :
41
+ NEEDS : ${{ toJson(needs) }}
42
+ run : |
43
+ ! echo $NEEDS | jq -e 'to_entries[] | { job: .key, result: .value.result } | select(.result != "success")'
You can’t perform that action at this time.
0 commit comments