Skip to content

Commit 401d68b

Browse files
committed
Reduce excessive line lengths in YAML files where possible
The project uses a standardized target line length of 120 for YAML files. In some cases it is not feasible to meet that target, but other lines were unnecessarily long.
1 parent ed46182 commit 401d68b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test-integration.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,8 +300,12 @@ jobs:
300300
jq \
301301
--null-input \
302302
--exit-status \
303-
--slurpfile generated "$reportPath" \
304-
--slurpfile golden "${{ env.TESTDATA_REPORTS_PATH }}/${{ needs.all-inputs.outputs.report-artifact-name }}/$(basename "$reportPath")" \
303+
--slurpfile \
304+
generated \
305+
"$reportPath" \
306+
--slurpfile \
307+
golden \
308+
"${{ env.TESTDATA_REPORTS_PATH }}/${{ needs.all-inputs.outputs.report-artifact-name }}/$(basename "$reportPath")" \
305309
'($generated|.[0].boards) == ($golden|.[0].boards)'
306310
) && (
307311
# Check the commit_hash value

0 commit comments

Comments
 (0)