Skip to content

Commit

Permalink
Add lint step
Browse files Browse the repository at this point in the history
  • Loading branch information
kegsay committed Oct 16, 2024
1 parent a13bab2 commit 93938d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@ jobs:
- name: Build
run: yarn build

- name: Lint
run: yarn lint ./src

- name: Docker Build
run: docker build -t tardis .
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ class Dag {
return;
}
document.getElementById("eventdetails")!.textContent = JSON.stringify(d.data, null, 2);
document.getElementById("infocontainer")!.style.display = "block";
document.getElementById("infocontainer")!.style.display = "block";
})
.attr("transform", `translate(${nodeRadius + 10}, 0)`)
.attr("font-family", "sans-serif")
Expand Down

0 comments on commit 93938d9

Please sign in to comment.