try different junit reporter

This commit is contained in:
Jonathan Wren 2020-11-07 16:21:21 -08:00
parent 01b4165dfb
commit 8423fd2e08
No known key found for this signature in database
GPG key ID: 43D5FF8722E7F68A

View file

@ -40,11 +40,16 @@ jobs:
- name: Accessibility testing (Pa11y) - name: Accessibility testing (Pa11y)
run: poetry run .github/workflows/pa11y.sh run: poetry run .github/workflows/pa11y.sh
- name: Junit Report to Annotations - name: Publish Unit Test Results
uses: ashley-taylor/junit-report-annotations-action@1.3 uses: EnricoMi/publish-unit-test-result-action@v1.4
if: always() if: always()
with: with:
access-token: ${{ secrets.GITHUB_TOKEN }} github_token: ${{ secrets.GITHUB_TOKEN }}
path: reports/pa11y/*.xml check_name: Unit Test Results
includeSummary: true comment_title: Unit Test Statistics
numFailures: 10 hide_comments: all but latest
comment_on_pr: true
files: reports/pa11y/*.xml
report_individual_runs: true
deduplicate_classes_by_file_name: false