From 2a4f2507a09a715e8182b7954b1bc3d9c107f492 Mon Sep 17 00:00:00 2001 From: lauren Date: Mon, 18 Nov 2024 16:34:10 -0500 Subject: [PATCH] [playground] Always upload test results in ci (#31571) Small change to always upload test results from CI even if the test failed. --- .github/workflows/compiler_playground.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/compiler_playground.yml b/.github/workflows/compiler_playground.yml index 0d4c4d2726cc1..9e7b5b438ad2b 100644 --- a/.github/workflows/compiler_playground.yml +++ b/.github/workflows/compiler_playground.yml @@ -46,6 +46,7 @@ jobs: - run: npx playwright install --with-deps chromium - run: yarn test - name: Archive test results + if: '!cancelled()' uses: actions/upload-artifact@v4 with: name: test-results