From d5273cf334c4a2e4e482357655d457bc257359f4 Mon Sep 17 00:00:00 2001 From: Sisyphus Date: Sun, 19 Jul 2026 18:13:15 +0900 Subject: [PATCH] ci: add doc-lint job using reusable workflow Adds a documentation lint job to CI that calls the reusable workflow at cubrid-lab/.github/.github/workflows/doc-lint.yml@main. Excludes node_modules and typescript/node_modules from all checks. Advisory mode initially (fail-on-issue: false). Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3252a28..79ec2c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,3 +23,10 @@ jobs: run: ruff check . - name: Ruff format check run: ruff format --check . + + doc-lint: + name: Documentation lint + uses: cubrid-lab/.github/.github/workflows/doc-lint.yml@main + with: + exclude: "node_modules/,typescript/node_modules/,vendor/" + fail-on-issue: false # advisory mode during initial rollout