mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-17 06:47:09 +01:00
run formatter and update check
This commit is contained in:
parent
f354bfa69d
commit
ec9abbc41f
4 changed files with 7 additions and 6784 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
|
@ -27,4 +27,3 @@ jobs:
|
|||
with:
|
||||
name: test-results
|
||||
path: __tests__/__results__/*.xml
|
||||
show-html-notice: true
|
||||
|
|
|
|||
1
.github/workflows/test-report.yml
vendored
1
.github/workflows/test-report.yml
vendored
|
|
@ -18,3 +18,4 @@ jobs:
|
|||
name: Workflow Report
|
||||
path: '*.xml'
|
||||
reporter: jest-junit
|
||||
show-html-notice: true
|
||||
|
|
|
|||
6786
package-lock.json
generated
6786
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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()
|
||||
|
|
@ -203,7 +203,6 @@ class TestReporter {
|
|||
console.log(`::notice title=Test Results::${resp.data.html_url}`)
|
||||
}
|
||||
|
||||
|
||||
return results
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue