Skip to content

Commit

Permalink
Print checks raw data to get snapshot to write tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Apr 14, 2024
1 parent 0882530 commit 760074f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28441,6 +28441,7 @@ async function run() {
}
(0, import_core2.startGroup)(`Polling ${attempts}: ${(/* @__PURE__ */ new Date()).toISOString()}`);
const checks = await fetchChecks(githubToken, trigger);
(0, import_core2.info)(JSON.stringify(checks, null, " "));
const report = generateReport(
checks,
trigger,
Expand Down
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ async function run(): Promise<void> {

startGroup(`Polling ${attempts}: ${(new Date()).toISOString()}`);
const checks = await fetchChecks(githubToken, trigger);
info(JSON.stringify(checks, null, '\t'));
const report = generateReport(
checks,
trigger,
Expand Down

0 comments on commit 760074f

Please sign in to comment.