From 6d9493351af4242ceb13aa3e34d21cdc3dfe4b79 Mon Sep 17 00:00:00 2001 From: Jussi Vatjus-Anttila Date: Sat, 30 Mar 2024 13:30:16 +0200 Subject: [PATCH] artifact npm logs --- .github/workflows/push.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 08fe0f43..5d7f6a87 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -65,6 +65,12 @@ jobs: # Artifact name name: coverage-report-${{ matrix.node-version }} path: coverage/lcov-report/** + - uses: actions/upload-artifact@v4 + if: success() || failure() # run this step even if previous step failed + with: + # Artifact name + name: npm-logs-${{ matrix.node-version }} + path: /home/runner/.npm/_logs/** - name: Test Report uses: dorny/test-reporter@v1 if: success() || failure() # run this step even if previous step failed