File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,12 @@ jobs:
17
17
- id : set-test-chunks
18
18
name : Set Chunks
19
19
run :
20
- echo "::set-output name=test-chunks::$(npx jest -c test/e2e/jest.config.js --listTests --json | jq -cM
21
- ' [_nwise(length / 10 | floor)]' )"
20
+ echo "test-chunks=$(npx jest -c test/e2e/jest.config.js --listTests --json | jq -cM '[_nwise(length / 10 |
21
+ floor)]')" >> $GITHUB_OUTPUT
22
+
22
23
- id : set-test-chunk-ids
23
24
name : Set Chunk IDs
24
- run : echo "::set-output name= test-chunk-ids:: $(echo $CHUNKS | jq -cM 'to_entries | map(.key)')"
25
+ run : echo "test-chunk-ids= $(echo $CHUNKS | jq -cM 'to_entries | map(.key)')" >> $GITHUB_OUTPUT
25
26
env :
26
27
CHUNKS : ${{ steps['set-test-chunks'].outputs['test-chunks'] }}
27
28
test :
30
31
needs :
31
32
- setup
32
33
strategy :
34
+ fail-fast : false
33
35
matrix :
34
36
chunk : ${{ fromJson(needs.setup.outputs['test-chunk-ids']) }}
35
37
steps :
You can’t perform that action at this time.
0 commit comments