run formatter and update check

This commit is contained in:
Connor Vidlock 2023-03-20 09:49:52 -05:00
parent f354bfa69d
commit ec9abbc41f
No known key found for this signature in database
GPG key ID: BADEF4A267C14600
4 changed files with 7 additions and 6784 deletions

View file

@ -42,7 +42,7 @@ class TestReporter {
readonly failOnError = core.getInput('fail-on-error', {required: true}) === 'true'
readonly workDirInput = core.getInput('working-directory', {required: false})
readonly onlySummary = core.getInput('only-summary', {required: false}) === 'true'
readonly showHTMLNotice = core.getInput('show-html-notice', {required:false}) === 'true'
readonly showHTMLNotice = core.getInput('show-html-notice', {required: false}) === 'true'
readonly token = core.getInput('token', {required: true})
readonly octokit: InstanceType<typeof GitHub>
readonly context = getCheckRunContext()
@ -202,7 +202,6 @@ class TestReporter {
if (this.showHTMLNotice) {
console.log(`::notice title=Test Results::${resp.data.html_url}`)
}
return results
}