From 83504b1b74c146aa0a78c8908b514420db3ce2f3 Mon Sep 17 00:00:00 2001 From: Victor Elias Date: Tue, 17 Sep 2024 14:27:57 -0300 Subject: [PATCH] .github: Fix jest test upload-artifact step --- .github/workflows/jest_tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/jest_tests.yaml b/.github/workflows/jest_tests.yaml index 0252fb8..a13453e 100644 --- a/.github/workflows/jest_tests.yaml +++ b/.github/workflows/jest_tests.yaml @@ -37,9 +37,9 @@ jobs: run: yarn run test - name: Upload Test Results - uses: actions/upload-artifact@v2 - if: failure() + uses: actions/upload-artifact@v3 + if: failure() with: name: test-results path: ./tests/reports/ - if-no-files-found: error + if-no-files-found: error