We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae45dcd commit c7fa1f5Copy full SHA for c7fa1f5
1 file changed
.github/actions/find/src/findForUrl.ts
@@ -30,6 +30,7 @@ export async function findForUrl(
30
31
let findings: Finding[] = [];
32
try {
33
+ const rawFindings = await new AxeBuilder({ page }).analyze();
34
let screenshotId: string | undefined;
35
36
if (includeScreenshots) {
@@ -57,7 +58,6 @@ export async function findForUrl(
57
58
}
59
60
- const rawFindings = await new AxeBuilder({ page }).analyze();
61
findings = rawFindings.violations.map((violation) => ({
62
scannerType: "axe",
63
url,
0 commit comments