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