mirror of https://github.com/usbharu/Hideout.git
chore: e2eテストのチェックを修正
This commit is contained in:
parent
b5872e5c76
commit
96196cf7ba
|
@ -234,7 +234,7 @@ jobs:
|
||||||
- name: Run Kover
|
- name: Run Kover
|
||||||
uses: gradle/gradle-build-action@v2.8.1
|
uses: gradle/gradle-build-action@v2.8.1
|
||||||
with:
|
with:
|
||||||
arguments: koverXmlReport -x integrationTest
|
arguments: koverXmlReport -x integrationTest -x e2eTest
|
||||||
|
|
||||||
- name: Add coverage report to PR
|
- name: Add coverage report to PR
|
||||||
if: always()
|
if: always()
|
||||||
|
@ -268,6 +268,12 @@ jobs:
|
||||||
path: build/test-results
|
path: build/test-results
|
||||||
key: integration-test-report-${{ github.sha }}
|
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
|
- name: JUnit Test Report
|
||||||
uses: mikepenz/action-junit-report@v2
|
uses: mikepenz/action-junit-report@v2
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue