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