Skip to content

Commit 38baf78

Browse files
committed
test: debug workflow
1 parent 395a886 commit 38baf78

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
100100
if (runsCanary) {
101101
core.setOutput('extraE2EIncludes', JSON.stringify(
102-
[1, 2, 3, 4, 5].map(shard => ({
102+
['1', '2', '3', '4', '5'].map(shard => ({
103103
version: 'canary',
104104
shard,
105105
mode: 'adapter'
@@ -115,6 +115,10 @@ jobs:
115115
core.setOutput('extraE2EIncludes', '[]');
116116
core.setOutput('extraMergeReportsIncludes', '[]');
117117
}
118+
- name: Debug outputs
119+
run: |
120+
echo "extraE2EIncludes: ${{ steps.set-adapters-includes.outputs.extraE2EIncludes }}"
121+
echo "extraMergeReportsIncludes: ${{ steps.set-adapters-includes.outputs.extraMergeReportsIncludes }}"
118122
119123
e2e:
120124
needs: setup
@@ -124,6 +128,7 @@ jobs:
124128
matrix:
125129
version: ${{ fromJson(needs.setup.outputs.matrix) }}
126130
shard: [1, 2, 3, 4, 5]
131+
mode: ["standalone"]
127132
include: ${{ fromJson(needs.setup.outputs.extraE2EIncludes) }}
128133

129134
steps:

0 commit comments

Comments
 (0)