From cedbb5c7d03af220bee129f2a442613fc50255ba Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Mon, 18 Nov 2024 16:10:01 -0500 Subject: [PATCH] [playground] Always upload test results in ci 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