-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.12 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>NodeGH source code reports</title>
<base href="/reports/" />
<link rel="stylesheet" href="foundation.min.css">
<style>
.report {
white-space: pre-line;
}
</style>
</head>
<body>
<div class="row">
<div class="large-12 columns">
<h1><a href="nodegh.io">NodeGH</a> Travis-generated source code reports</h1>
<ul>
<li><a href="https://node-gh.github.io/reports/coverage/lcov-report/index.html">Code coverage</a></li>
<li><a href="https://node-gh.github.io/reports/complexity/">Static analysis & code complexity</a></li>
</ul>
<p>More info on <a href="https://github.com/node-gh/gh/blob/master/CONTRIBUTING.md">gh/CONTRIBUTING.md</a>.</p>
<h2 id="report-msg"></h2>
<div class="report panel callout radius" id="report"></div>
</div>
</div>
<script>
var request = new XMLHttpRequest();
request.onload = function() {
document.querySelector('#report-msg').innerHTML = 'Report build';
document.querySelector('#report').textContent = request.responseText;
};
request.open('GET', 'report');
request.send();
</script>
</body>
</html>