Skip to content

Commit

Permalink
ci: check for warnings when rendering documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
brotkrueml committed Aug 22, 2024
1 parent d0fc0d3 commit a7ab96d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Documentation

on:
push:
paths:
- 'Documentation/**'
pull_request:
paths:
- 'Documentation/**'

jobs:
tests:
name: Rendering
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Documentation renders without warnings
run: |
docker run --rm --pull always -v $(pwd):/project \
ghcr.io/typo3-documentation/render-guides:latest --config=Documentation --no-progress --fail-on-log

0 comments on commit a7ab96d

Please sign in to comment.