Skip to content

Commit ef29f6f

Browse files
authored
chore: Merge main into v2 (#68)
Supersedes #64
2 parents dab8a8a + b826dda commit ef29f6f

File tree

20 files changed

+474
-536
lines changed

20 files changed

+474
-536
lines changed

.github/actions/auth/package-lock.json

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/auth/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
"type": "module",
1515
"dependencies": {
1616
"@actions/core": "^1.11.1",
17-
"playwright": "^1.56.0"
17+
"playwright": "^1.56.1"
1818
},
1919
"devDependencies": {
20-
"@types/node": "^24.7.1",
20+
"@types/node": "^24.9.2",
2121
"typescript": "^5.9.3"
2222
}
2323
}

.github/actions/auth/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default async function () {
4747
// If no login form is found, then either HTTP Basic auth succeeded, or the page does not require authentication.
4848
core.info("Checking for login form");
4949
const [usernameField, passwordField] = await Promise.all([
50-
page.getByLabel(/username/i).first(),
50+
page.getByLabel(/user ?name/i).first(),
5151
page.getByLabel(/password/i).first(),
5252
]);
5353
const [usernameFieldExists, passwordFieldExists] = await Promise.all([

.github/actions/file/package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/file/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@octokit/plugin-throttling": "^11.0.2"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^24.7.1",
21+
"@types/node": "^24.9.2",
2222
"typescript": "^5.9.3"
2323
}
2424
}

.github/actions/find/package-lock.json

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/actions/find/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
"type": "module",
1515
"dependencies": {
1616
"@actions/core": "^1.11.1",
17-
"@axe-core/playwright": "^4.10.2",
18-
"playwright": "^1.56.0"
17+
"@axe-core/playwright": "^4.11.0",
18+
"playwright": "^1.56.1"
1919
},
2020
"devDependencies": {
21-
"@types/node": "^24.7.1",
21+
"@types/node": "^24.9.2",
2222
"typescript": "^5.9.3"
2323
}
2424
}

.github/actions/find/src/findForUrl.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
99
const context = await browser.newContext(contextOptions);
1010
const page = await context.newPage();
1111
await page.goto(url);
12+
console.log(`Scanning ${page.url()}`);
1213

1314
let findings: Finding[] = [];
1415
try {

.github/actions/find/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default async function () {
1414

1515
let findings = [];
1616
for (const url of urls) {
17-
core.info(`Scanning ${url}`);
17+
core.info(`Preparing to scan ${url}`);
1818
const findingsForUrl = await findForUrl(url, authContext);
1919
if (findingsForUrl.length === 0) {
2020
core.info(`No accessibility gaps were found on ${url}`);

.github/actions/fix/package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)