From 262f8221c9aa6d3155b0b4c21f7edaa29dc6a9c0 Mon Sep 17 00:00:00 2001 From: Mike Harder Date: Wed, 25 Sep 2024 21:14:04 +0000 Subject: [PATCH] Upload artifact before running tests --- .github/workflows/tsp-client-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tsp-client-tests.yml b/.github/workflows/tsp-client-tests.yml index 3832dd0910d..d6319831d12 100644 --- a/.github/workflows/tsp-client-tests.yml +++ b/.github/workflows/tsp-client-tests.yml @@ -55,12 +55,12 @@ jobs: shell: pwsh working-directory: tools/tsp-client - - run: npm run test - shell: pwsh - working-directory: tools/tsp-client - - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v4 with: name: package path: tools/tsp-client/*.tgz compression-level: 0 + + - run: npm run test + shell: pwsh + working-directory: tools/tsp-client