remove xunit annotator since it was not working correctly
This commit is contained in:
23
.github/workflows/test.yml
vendored
23
.github/workflows/test.yml
vendored
@@ -191,17 +191,7 @@ jobs:
|
|||||||
node-version: 24
|
node-version: 24
|
||||||
- name: JS Type Check
|
- name: JS Type Check
|
||||||
run: |
|
run: |
|
||||||
set -o pipefail
|
npx -p typescript tsc -p radicale/web/jsconfig.json
|
||||||
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'
|
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
name: Lint
|
name: Lint
|
||||||
@@ -230,13 +220,4 @@ jobs:
|
|||||||
- name: Install Playwright Browsers
|
- name: Install Playwright Browsers
|
||||||
run: uv run --extra integ_test playwright install --with-deps
|
run: uv run --extra integ_test playwright install --with-deps
|
||||||
- name: Run Integration Tests
|
- name: Run Integration Tests
|
||||||
run: uv run --extra integ_test pytest --junitxml=pytest-results.xml integ_tests
|
run: uv run --extra integ_test pytest integ_tests/ -v
|
||||||
- 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'
|
|
||||||
|
|||||||
Reference in New Issue
Block a user