File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -193,14 +193,18 @@ jobs:
193193 - run :
194194 name : Check JupyterLab build artifacts
195195 command : |
196- diff -qr plotly/labextension-tmp/ plotly/labextension/ | grep -v '^Only in' > build_diff.txt
196+ diff -qr plotly/labextension-tmp/ plotly/labextension/ | grep -v '^Only in' > build_diff.txt || true
197+
198+ ls -l build_diff.txt
199+ wc -l build_diff.txt
200+ cat build_diff.txt
197201
198202 if [ -s build_diff.txt ]; then
199- echo "Build artifacts differ from committed files:"
203+ echo "❌ Build artifacts differ from committed files:"
200204 cat build_diff.txt
201205 exit 1
202206 else
203- echo "Build artifacts are identical to committed files."
207+ echo "✅ Build artifacts are identical to committed files."
204208 fi
205209
206210 # Percy
You can’t perform that action at this time.
0 commit comments