chore: e2eテストのチェックを修正

This commit is contained in:
usbharu 2023-12-03 16:14:17 +09:00
parent 81a2a247b2
commit 5b2a917bd7
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 7 additions and 1 deletions

View File

@ -234,7 +234,7 @@ jobs:
- name: Run Kover
uses: gradle/gradle-build-action@v2.8.1
with:
arguments: koverXmlReport -x integrationTest
arguments: koverXmlReport -x integrationTest -x e2eTest
- name: Add coverage report to PR
if: always()
@ -268,6 +268,12 @@ jobs:
path: build/test-results
key: integration-test-report-${{ github.sha }}
- name: Restore Test Report
uses: actions/cache/restore@v3
with:
path: build/test-results
key: e2e-test-report-${{ github.sha }}
- name: JUnit Test Report
uses: mikepenz/action-junit-report@v2
with: