-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
81 lines (62 loc) · 2.03 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import core from "@actions/core";
import github from "@actions/github";
import { LinkChecker } from "linkinator";
const skipLinks = [
"images.ctfassets.net",
"linkedin.com",
"netlify.com",
"x.com",
];
try {
const siteUrl = core.getInput("site-url");
const repoToken = core.getInput("token");
const octokit = github.getOctokit(repoToken);
async function checkLinks() {
const checker = new LinkChecker();
checker.on("pagestart", (url) => {
console.log(`Scanning ${url}`);
});
const result = await checker.check({
path: siteUrl,
recurse: true,
linksToSkip: skipLinks,
});
console.log(result.passed ? "PASSED :D" : "FAILED :(");
console.log(`Scanned total of ${result.links.length} links!`);
const brokenLinks = result.links.filter((x) => x.state === "BROKEN");
console.log(`Detected ${brokenLinks.length} broken links.`);
if (brokenLinks.length === 0) return;
console.log("Opening GitHub issue for broken links");
const uniqueUrls = [...new Set(brokenLinks.map((x) => x.url))];
const issueByURL = uniqueUrls
.map((url) => {
const pages = brokenLinks
.filter((x) => x.url === url)
.map((x) => x.parent);
return `- [ ] ${url}\r\n - [ ] ${pages.join("\r\n - [ ]")}`;
})
.join("\r\n \r\n");
const uniquePages = [...new Set(brokenLinks.map((x) => x.parent))];
const issueByPage = uniquePages
.map((page) => {
const urls = brokenLinks
.filter((x) => x.parent === page)
.map((x) => x.url);
return `- [ ] ${page}\r\n - [ ] ${urls.join("\r\n - [ ] ")}`;
})
.join("\r\n \r\n");
const issueBody =
`## Dead Links by URL\r\n\r\n${issueByURL}\r\n\r\n` +
`## Dead Links by Page\r\n\r\n${issueByPage}`;
console.log(issueBody);
const context = github.context;
octokit.rest.issues.create({
...context.repo,
title: "Dead Links",
body: issueBody,
});
}
checkLinks();
} catch (error) {
core.setFailed(error.message);
}