From c93ba2d87826655d463cc89219c61c380f92f981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ulises=20Gasc=C3=B3n?= Date: Mon, 27 Oct 2025 11:17:43 +0100 Subject: [PATCH] ci: add ci pipeline for documentation (#6020) --- .github/workflows/ci-docs.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/ci-docs.yml diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml new file mode 100644 index 000000000..6929a7175 --- /dev/null +++ b/.github/workflows/ci-docs.yml @@ -0,0 +1,32 @@ +name: CI Docs + +on: + push: + branches: [ main ] + pull_request: + # Run on every PR, regardless of branch + branches: [ '*' ] + +jobs: + test-docs: + name: Docs Test + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup Node.js (latest) + uses: actions/setup-node@v4 + with: + node-version: 'node' # Use 'node' for the latest version + cache: 'npm' + + - name: Install dependencies + run: npm install + + - name: Test documentation + run: | + npm run doc:fp + npm run doc:site + npm run doc \ No newline at end of file