We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3074435 commit 5157d20Copy full SHA for 5157d20
.github/workflows/int.yaml
@@ -21,7 +21,7 @@ jobs:
21
- name: Build
22
run: npm run all:action
23
- name: Publish Test Report
24
- uses: ctrf-io/github-test-reporter@v1
+ uses: ./
25
with:
26
report-path: './ctrf/*.json'
27
integrations-config: |
src/core/action-handler.ts
@@ -12,8 +12,10 @@ export async function runAction(): Promise<void> {
12
const githubContext = getAllGitHubContext()
13
14
const report = await prepareReport(inputs, githubContext)
15
+ console.log('report')
16
console.log(JSON.stringify(report, null, 2))
17
await processIntegrations(inputs.integrationsConfig, report)
18
+ console.log('report processed')
19
20
await handleViewsAndComments(inputs, report)
handleAnnotations(inputs, report)
0 commit comments