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 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