Skip to content

Commit 714ff03

Browse files
committed
Fix yaml lint errors
1 parent 447458b commit 714ff03

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/actions/run-ios-e2e-tests/action.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ inputs:
88
description: 'Test Device UDID'
99
required: true
1010
outputs_path:
11-
description: 'Path to where outputs are stored - both build outputs and outputs from running tests. This should be unique for each job run in order to avoid concurrency issues.'
11+
description: >
12+
Path to where outputs are stored - both build outputs and outputs from running tests.
13+
This should be unique for each job run in order to avoid concurrency issues.
1214
required: true
1315

1416
runs:
@@ -27,7 +29,7 @@ runs:
2729
echo "Setting output directory output"
2830
test_output_directory="${{ env.OUTPUTS_PATH }}/tests-output"
2931
fi
30-
32+
3133
echo "TEST_OUTPUT_DIRECTORY=$test_output_directory" >> $GITHUB_ENV
3234
echo "TEST_NAME_SANITIZED=$test_name_sanitized" >> $GITHUB_ENV
3335
shell: bash
@@ -55,7 +57,8 @@ runs:
5557
-resultBundlePath ${{ env.TEST_OUTPUT_DIRECTORY }}/xcode-test-report \
5658
-derivedDataPath derived-data \
5759
-destination "platform=iOS,id=$TEST_DEVICE_UDID" \
58-
test-without-building 2>&1 #| xcbeautify --report junit --report-path ${{ env.TEST_OUTPUT_DIRECTORY }}/junit-test-report
60+
test-without-building 2>&1 #| xcbeautify --report junit \
61+
--report-path ${{ env.TEST_OUTPUT_DIRECTORY }}/junit-test-report
5962
shell: bash
6063
working-directory: ${{ inputs.outputs_path }}/mullvadvpn-app/ios
6164
env:

0 commit comments

Comments
 (0)