diff --git a/index.html b/index.html
index 25873d9..4ead0df 100644
--- a/index.html
+++ b/index.html
@@ -1,5 +1,8 @@
+
+Wowless
+
-Coming soon...
+
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..4b8384e
--- /dev/null
+++ b/index.js
@@ -0,0 +1,5 @@
+fetch("https://api.github.com/repos/wowless/wowless/actions/artifacts?name=test-results&per_page=1")
+ .then(res => res.json())
+ .then(json => fetch(json.artifacts[0].archive_download_url))
+ .then(res => res.text())
+ .then(body => document.body.append(body.length))