Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env sh
set -e

if [ "$SKIP_TEST_COMPLIANCE" = "1" ]; then
echo "Skipping unit-test compliance (SKIP_TEST_COMPLIANCE=1)."
exit 0
fi

node ./scripts/precommit-compliance.mjs
29 changes: 28 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,35 @@ on:
permissions:
contents: write
jobs:
build-and-deploy:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3

- name: Setup Node ✨
uses: actions/setup-node@v3
with:
node-version: 20.x

- name: Install Dependencies 🔧
run:
yarn install

- name: Build 🔧
run:
yarn run build

- name: Post Build Actions 🛠️
run:
yarn run github-post-build
env:
NODE_ENV: production

deploy:
runs-on: ubuntu-latest
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
environment: github-pages
steps:
- name: Checkout 🛎️
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/unit-test-compliance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Unit Test Compliance

on:
push:
branches:
- main
- "codex/**"
pull_request: {}

jobs:
unit-test-compliance:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20.x

- name: Install dependencies
run: yarn install --frozen-lockfile

- name: Run unit + component compliance
run: yarn test:compliance:quiet
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ node_modules
.data/*
docs/
yarn.lock
dist/
coverage/

# local env files
.env.local
Expand Down
9 changes: 9 additions & 0 deletions CITATION.bib
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
@misc{solidcockpit_2026,
author = {Crum, Elias},
title = {{Solid Cockpit}},
year = {2026},
version = {1.0.0},
publisher = {GitHub},
howpublished = {\\url{https://github.com/KNowledgeOnWebScale/solid-cockpit}},
note = {Software. Web app: \\url{https://knowledgeonwebscale.github.io/solid-cockpit}. Accessed: 2026-03-04}
}
18 changes: 18 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
cff-version: 1.2.0
message: "If you use Solid Cockpit in academic work, please cite it using the metadata below."
title: "Solid Cockpit"
type: software
version: "1.0.0"
date-released: 2026-03-04
license: "MIT"
authors:
- family-names: "Crum"
given-names: "Elias"
repository-code: "https://github.com/KNowledgeOnWebScale/solid-cockpit"
url: "https://knowledgeonwebscale.github.io/solid-cockpit"
keywords:
- Solid
- Linked Data
- SPARQL
- Pod
- Privacy
Loading
Loading