Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
asdfg
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminaaron committed Apr 25, 2024
1 parent 417fce2 commit 4648815
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.11.1'
node-version: "20.11.1"
- name: Install dependencies
run: npm install
- name: Collect assets
Expand All @@ -26,6 +26,6 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
keep_files: false
keep_files: true
allow_empty_commit: true
force_orphan: true
6 changes: 3 additions & 3 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
document.getElementById("output").innerHTML = JSON.stringify(report, null, 2)
})

function fetchTTL() {
fetch('requirement-profiles/meta.ttl')
function fetchTurtleDev() {
fetch("requirement-profiles/meta.ttl")
.then(response => response.text())
.then(data => {
console.log("data", data)
})
.catch(err => console.error(err));
}
fetchTTL()
fetchTurtleDev()
</script>
</body>
</html>

0 comments on commit 4648815

Please sign in to comment.