test: directory mapping

This commit is contained in:
Martin Fillafer 2023-03-20 15:29:56 +01:00
parent 3606ee2f36
commit 8cb6ade3ac
3 changed files with 10 additions and 0 deletions

View file

@ -44,6 +44,7 @@ class TestReporter {
readonly workDirInput = core.getInput('working-directory', {required: false})
readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true'
readonly token = core.getInput('token', {required: true})
readonly directoryMapping = core.getInput('directory-mapping', {required: true})
readonly octokit: InstanceType<typeof GitHub>
readonly context = getCheckRunContext()
@ -64,6 +65,8 @@ class TestReporter {
core.setFailed(`Input parameter 'max-annotations' has invalid value`)
return
}
console.log('Directory mapping: ', this.directoryMapping)
}
async run(): Promise<void> {