From 6cd80447f80019a5cbeb35f8905da588f6f4c5a2 Mon Sep 17 00:00:00 2001 From: Dave Vandyke Date: Wed, 11 May 2022 11:04:53 +0100 Subject: [PATCH] Ensure test artifacts are saved on failure (#1160) So far, test artifacts are only actually saved if the tests pass! We will need the test artifacts to debug failures - that is their whole purpose! --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 606220a0e1..8f6c63eb25 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -56,6 +56,7 @@ jobs: npm run install-ci - run: npm run test-int-x - name: Store test artifacts + if: always() uses: actions/upload-artifact@v2 with: name: integration-test-artifacts