We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed9c62e commit b44bb28Copy full SHA for b44bb28
1 file changed
.github/workflows/pr.yml
@@ -74,6 +74,15 @@ jobs:
74
- run: yarn lint:ci
75
76
- run: yarn test --verbose
77
+ id: test
78
+
79
+ - name: Upload npm logs on failure
80
+ if: failure() && steps.test.outcome == 'failure'
81
+ uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
82
+ with:
83
+ name: npm-logs-${{ matrix.os }}-node${{ matrix.node }}-npm${{ matrix.npm }}
84
+ path: ${{ env.HOME || env.USERPROFILE }}/.npm/_logs
85
+ retention-days: 3
86
87
# The docs have a separate installation using Node 22 due to needing newer dependencies
88
docs:
0 commit comments