File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
.github/actions/check-codescanning-config Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 6262 - name : Check config
6363 working-directory : ${{ github.action_path }}
6464 shell : bash
65- run : ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
65+ run : echo "$EXPECTED_CONFIG_FILE_CONTENTS"; ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
6666 - name : Clean up
6767 shell : bash
6868 if : always()
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import * as assert from 'assert'
77const actualConfig = loadActualConfig ( )
88
99const rawExpectedConfig = process . argv [ 3 ] . trim ( )
10+ core . info ( "rawExpectedConfig: " + rawExpectedConfig )
1011if ( ! rawExpectedConfig ) {
1112 core . setFailed ( 'No expected configuration provided' )
1213} else {
You can’t perform that action at this time.
0 commit comments