.gitea/workflows/ci.yml aktualisiert
Some checks failed
ci / build-test (push) Has been cancelled

This commit is contained in:
2026-04-24 18:10:49 +02:00
parent 295e2bcfff
commit d772048fb4

View File

@@ -20,7 +20,7 @@ on:
jobs: jobs:
build-test: build-test:
runs-on: ubuntu-latest runs-on: ubuntu-latestf
timeout-minutes: 20 timeout-minutes: 20
env: env:
PUBLIC_AUTH_SIGNIN_URL: ${{ secrets.PUBLIC_AUTH_SIGNIN_URL }} PUBLIC_AUTH_SIGNIN_URL: ${{ secrets.PUBLIC_AUTH_SIGNIN_URL }}
@@ -79,10 +79,10 @@ jobs:
- name: Build site - name: Build site
run: npm run build run: npm run build
- name: Guard — no TODO markers may ship in built HTML - name: Guard — no TBD markers may ship in built HTML
run: | run: |
if grep -rlE '(TODO|TBD):' dist 2>/dev/null | grep -E '\.(html|svg)$'; then if grep -rlE '(TBD):' dist 2>/dev/null | grep -E '\.(html|svg)$'; then
echo "Built output contains unfilled <TODO:...> (or legacy <TBD:...>) markers." echo "Built output contains unfilled <TBD:...>) markers."
echo "Fill in imprint.astro and privacy.astro operator fields before merging to main." echo "Fill in imprint.astro and privacy.astro operator fields before merging to main."
exit 1 exit 1
fi fi