Skip to content

Commit 8714912

Browse files
committed
Deploying to gh-pages from @ 7c4d797 πŸš€
0 parents  commit 8714912

File tree

34,262 files changed

+3258159
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

34,262 files changed

+3258159
-0
lines changed

β€Ž404.htmlβ€Ž

Lines changed: 3273 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"links": [
3+
"..",
4+
"test-report"
5+
]
6+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!-- report-action -->
2+
<!doctype html>
3+
<html lang="en">
4+
<head>
5+
<meta charset="UTF-8" />
6+
<title>Folder Listing</title>
7+
</head>
8+
9+
<body>
10+
<div id="app">
11+
<ul id="links"></ul>
12+
</div>
13+
14+
<script>
15+
const linksList = document.getElementById('links')
16+
17+
fetch(`./data.json?t=${Date.now()}`)
18+
.then((response) => response.ok && response.json())
19+
.then((json) => {
20+
if (!json) {
21+
return
22+
}
23+
24+
json.links.forEach((record) => {
25+
const link = document.createElement('a')
26+
link.appendChild(document.createTextNode(record))
27+
link.href = record
28+
const li = document.createElement('li')
29+
li.appendChild(link)
30+
linksList.appendChild(li)
31+
})
32+
delete json.links
33+
})
34+
</script>
35+
</body>
36+
</html>

β€Žallure-action/dependabot_github_actions_crs-k_stale-branches-7_0_0/test-report/13093459003_1738452975978/app.jsβ€Ž

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
"BROKEN","EPIC","FAILED","FEATURE","PASSED","SKIPPED","STORY","UNKNOWN"
2+
"0","","0","","273","0","","0"

β€Žallure-action/dependabot_github_actions_crs-k_stale-branches-7_0_0/test-report/13093459003_1738452975978/data/behaviors.jsonβ€Ž

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

β€Žallure-action/dependabot_github_actions_crs-k_stale-branches-7_0_0/test-report/13093459003_1738452975978/data/categories.csvβ€Ž

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"uid":"4b4757e66a1912dae1a509f688f20b0f","name":"categories","children":[]}

β€Žallure-action/dependabot_github_actions_crs-k_stale-branches-7_0_0/test-report/13093459003_1738452975978/data/packages.jsonβ€Ž

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

β€Žallure-action/dependabot_github_actions_crs-k_stale-branches-7_0_0/test-report/13093459003_1738452975978/data/suites.csvβ€Ž

Lines changed: 274 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
Β (0)