From 3147c6dc54ea486872c97f8baabe125102dca7ff Mon Sep 17 00:00:00 2001 From: Lina Wolf <48202465+linawolf@users.noreply.github.com> Date: Thu, 30 Jul 2026 15:52:44 +0200 Subject: [PATCH] Use reusable documentation testing Replaced the documentation test job with a reusable workflow. Releases: main, 14.3, 13.4 --- .github/workflows/test-documentation.yml | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test-documentation.yml b/.github/workflows/test-documentation.yml index 096152d..5032f5e 100644 --- a/.github/workflows/test-documentation.yml +++ b/.github/workflows/test-documentation.yml @@ -1,17 +1,11 @@ name: test documentation -on: [ push, pull_request ] +on: + push: + pull_request: jobs: - tests: - name: documentation - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 - - - name: Test if the documentation will render without warnings - run: | - mkdir -p Documentation-GENERATED-temp \ - && docker run --rm --pull always -v $(pwd):/project \ - ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --minimal-test + render: + uses: TYPO3-Documentation/.github/.github/workflows/reusable-test-documentation.yml@main + with: + render-flags: '--no-progress --minimal-test'