From e74bcaae12927d7f096a93c901a906b6e9d53169 Mon Sep 17 00:00:00 2001 From: WadydX <65117428+WadydX@users.noreply.github.com> Date: Tue, 5 May 2026 13:14:12 +0100 Subject: [PATCH 1/2] test: run docs-check in CI --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2493cedc..4a2305ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,8 @@ jobs: run: make test - name: Lint run: make lint + - name: Docs check + run: make docs-check worker: runs-on: ubuntu-latest From 9619351ac0ac2c85ac874050d3b8d00630c6a3d5 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 9 May 2026 10:04:26 +0100 Subject: [PATCH 2/2] ci: include docs check in local gate --- CHANGELOG.md | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe50dc72..e8453a81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Docs: avoid infinite loops when local Markdown parsing ends on Thai, CJK, emoji, or other multi-byte runes. (#560 / #559) — thanks @ninyawee. - Agent skill: replace stale bundled `gog` skill paths with the current docs and auth package locations. (#558 / #557) — thanks @WadydX. +- CI: run the docs validation gate in GitHub Actions and the local `make ci` target. (#562 / #561) — thanks @WadydX. ## 0.15.0 - 2026-05-05 diff --git a/Makefile b/Makefile index ed3c1ae6..c60dd4b5 100644 --- a/Makefile +++ b/Makefile @@ -109,7 +109,7 @@ pnpm-gate: test: @go test $(GO_TEST_FLAGS) $(TEST_FLAGS) $(TEST_PKGS) -ci: pnpm-gate fmt-check lint test +ci: pnpm-gate fmt-check lint test docs-check worker-ci: @pnpm -C internal/tracking/worker lint