File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
.github/actions/check-codescanning-config Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 6363 shell : bash
6464 env :
6565 EXPECTED_CONFIG_FILE_CONTENTS : ' ${{ inputs.expected-config-file-contents }}'
66- run : |
67- echo "EXPECTED_CONFIG_FILE_CONTENTS = $EXPECTED_CONFIG_FILE_CONTENTS"
68- ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
66+ run : ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
6967 - name : Clean up
7068 shell : bash
7169 if : always()
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import * as assert from 'assert'
77const actualConfig = loadActualConfig ( )
88
99const rawExpectedConfig = process . argv [ 3 ] . trim ( )
10- core . info ( "rawExpectedConfig: " + rawExpectedConfig )
1110if ( ! rawExpectedConfig ) {
1211 core . setFailed ( 'No expected configuration provided' )
1312} else {
You can’t perform that action at this time.
0 commit comments