3 Commits

Author SHA1 Message Date
f7345b5433 test
Some checks failed
CI - Docs build check / build-check (push) Failing after 8s
Deploy RC preview to GitHub Pages / deploy-rc-pages (push) Failing after 5s
2026-02-05 13:30:06 -06:00
a5640d0e02 oops more errors 2026-02-05 13:25:56 -06:00
50252ece04 oops branch name wrong 2026-02-05 13:18:55 -06:00

View File

@@ -4,7 +4,7 @@ on:
push: push:
branches: branches:
- main - main
- development - develop
- release-candidate - release-candidate
workflow_dispatch: workflow_dispatch:
@@ -12,16 +12,15 @@ permissions:
contents: read contents: read
env: env:
MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT:-true }} MKDOCS_STRICT: ${{ vars.MKDOCS_STRICT || 'true' }}
MKDOCS_CONFIG: mkdocs/mkdocs.yml MKDOCS_CONFIG: mkdocs/mkdocs.yml
MKDOCS_OFFLINE: false MKDOCS_OFFLINE: false
CSPELL_CONFIG: tools/spellcheck/cspell.yml CSPELL_CONFIG: tools/spellcheck/cspell.yml
CSPELL_TARGETS: "docs/**/*.md" README.md CSPELL_TARGETS: docs/**/*.md README.md
jobs: jobs:
build-check: build-check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -35,7 +34,7 @@ jobs:
run: | run: |
set -euo pipefail set -euo pipefail
npx --yes cspell \ npx --yes cspell \
--config ${CSPELL_CONFIG \ --config ${CSPELL_CONFIG} \
${CSPELL_TARGETS} ${CSPELL_TARGETS}
- name: Install build dependencies - name: Install build dependencies