Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs #76

Merged
merged 13 commits into from
Sep 14, 2023
5 changes: 3 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,11 @@ indent_style = space
indent_size = 2
max_line_length = 120

[**.md]
indent_style = space

[{Makefile,**.mk}]
indent_style = tab
max_line_length = off


[tests/acceptance/**.sh]
indent_size = unset
37 changes: 37 additions & 0 deletions .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Check Docs

on:
pull_request:

workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install dependencies
run: yarn install
- name: Build with VitePress
run: |
yarn docs:build
touch docs/.vitepress/dist/.nojekyll
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ h1, h2, h3, h4, h5, h6 {
--vp-c-default-1: #d3d7cf;
--vp-c-default-2: #e1e3de;
--vp-c-default-3: #eceeee;
--vp-c-default-soft: #5557532e;
--vp-c-default-soft: #d3d7cf2e;

--vp-c-brand-1: #4e9a06;
--vp-c-brand-2: #6cbe1d;
Expand Down
Loading