ci: publish test result action

This commit is contained in:
Maël Gangloff 2025-10-17 13:11:03 +02:00
parent a7d07be1be
commit ef52c2b00d
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629

View File

@ -8,6 +8,8 @@ on:
permissions: permissions:
contents: read contents: read
checks: write
pull-requests: write
jobs: jobs:
php-setup: php-setup:
@ -145,7 +147,14 @@ jobs:
run: ln -s custom_rdap_servers.example.yaml config/app/custom_rdap_servers.yaml run: ln -s custom_rdap_servers.example.yaml config/app/custom_rdap_servers.yaml
- name: Run PHPUnit - name: Run PHPUnit
run: vendor/bin/phpunit --coverage-text run: vendor/bin/phpunit --coverage-text --log-junit test-results.xml
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action@v2
if: (!cancelled())
with:
files: |
test-results.xml
eslint: eslint:
name: ESLint name: ESLint