We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8337409 commit b266957Copy full SHA for b266957
1 file changed
.github/workflows/ci.yaml
@@ -35,6 +35,17 @@ jobs:
35
GITHUB_TOKEN: ${{ secrets.ADOBE_BOT_GITHUB_TOKEN }}
36
NPM_TOKEN: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}
37
38
+ - name: Print npm debug log if build fails
39
+ if: failure()
40
+ run: |
41
+ if [ -f /home/runner/.npm/_logs/*.log ]; then
42
+ echo "==== NPM DEBUG LOG ===="
43
+ cat /home/runner/.npm/_logs/*.log
44
+ echo "==== END NPM DEBUG LOG ===="
45
+ else
46
+ echo "No npm debug log found."
47
+ fi
48
+
49
semantic-release:
50
runs-on: ubuntu-latest
51
needs: build
0 commit comments