Skip to content

Commit

Permalink
upload artifacts on errors in github ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed Oct 23, 2020
1 parent 66a561b commit c6fed5a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/quick-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:

- name: Archive KtLint Reports
uses: actions/upload-artifact@v2
if: failure()
with:
name: ktlint-reports
path: '**/build/reports/ktlint'
Expand All @@ -51,6 +52,7 @@ jobs:

- name: Archive JVM Test Reports
uses: actions/upload-artifact@v2
if: failure()
with:
name: jvm-test-reports
path: '**/build/reports/tests/jvmTest'
Expand All @@ -59,6 +61,7 @@ jobs:
run: ./gradlew $OPTS jsTest

- name: Archive JS Test Reports
if: failure()
uses: actions/upload-artifact@v2
with:
name: js-test-reports
Expand Down

0 comments on commit c6fed5a

Please sign in to comment.