remove xunit annotator since it was not working correctly

This commit is contained in:
Max Berger
2026-03-25 23:39:42 +01:00
parent 951cfde278
commit 57e0c94d29

View File

@@ -191,17 +191,7 @@ jobs:
node-version: 24
- name: JS Type Check
run: |
set -o pipefail
npx -p typescript tsc -p radicale/web/jsconfig.json | npx typescript-xunit-xml > tsc-results.xml
- uses: mikepenz/action-junit-report@v6
if: ${{ failure() && (github.event.pull_request.head.repo.full_name != github.repository) }}
with:
report_paths: 'tsc-results.xml'
annotate_only: true # forked repo cannot write to checks so just do annotations
- uses: mikepenz/action-junit-report@v6
if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository }}
with:
report_paths: 'tsc-results.xml'
npx -p typescript tsc -p radicale/web/jsconfig.json
lint:
name: Lint
@@ -230,13 +220,4 @@ jobs:
- name: Install Playwright Browsers
run: uv run --extra integ_test playwright install --with-deps
- name: Run Integration Tests
run: uv run --extra integ_test pytest --junitxml=pytest-results.xml integ_tests
- uses: mikepenz/action-junit-report@v6
if: ${{ failure() && (github.event.pull_request.head.repo.full_name != github.repository) }}
with:
report_paths: 'pytest-results.xml'
annotate_only: true # forked repo cannot write to checks so just do annotations
- uses: mikepenz/action-junit-report@v6
if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository }}
with:
report_paths: 'pytest-results.xml'
run: uv run --extra integ_test pytest integ_tests/ -v