We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d57df66 commit de5e2d6Copy full SHA for de5e2d6
.circleci/config.yml
@@ -59,6 +59,14 @@ jobs:
59
mkdir dash-package && cp dist/*.tar.gz dash-package/dash-package.tar.gz
60
ls -la dash-package
61
no_output_timeout: 30m
62
+ - run:
63
+ name: Display npm errors and exit on failed builds
64
+ command: |
65
+ if [ -d "/home/circleci/.npm/_logs" ]
66
+ then
67
+ cat /home/circleci/.npm/_logs/*
68
+ exit 1
69
+ fi
70
- save_cache:
71
key: dep-{{ checksum ".circleci/config.yml" }}-{{ checksum "ver.txt" }}-{{ checksum "requires-all.txt" }}
72
paths:
0 commit comments