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 88a4529 commit c5e21afCopy full SHA for c5e21af
1 file changed
.github/workflows/e2e.yml
@@ -45,7 +45,10 @@ jobs:
45
rm -rf node_modules/electron/dist node_modules/electron/path.txt ~/.cache/electron
46
cat node_modules/electron/package.json | grep '"version"'
47
node node_modules/electron/install.js; echo "install.js exit=$?"
48
- ls -la node_modules/electron/dist 2>&1 | head -8 || echo "NO DIST"
+ Z=$(ls ~/.cache/electron/*/*.zip 2>/dev/null | head -1); echo "ZIP=$Z"
49
+ ls -la "$Z" 2>&1; du -h "$Z" 2>&1
50
+ unzip -t "$Z" >/dev/null 2>&1 && echo "ZIP_OK" || echo "ZIP_CORRUPT"
51
+ unzip -l "$Z" 2>&1 | tail -3
52
test -x node_modules/electron/dist/electron && echo "BINARY OK" || echo "BINARY MISSING"
53
- run: yarn build
54
# Electron needs system libraries; xvfb provides a display on the headless
0 commit comments