We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77d85c3 commit c8a5c58Copy full SHA for c8a5c58
1 file changed
.github/workflows/backend-tests.yml
@@ -58,6 +58,17 @@ jobs:
58
working-directory: ./etherpad-lite
59
run: |
60
pnpm run plugins i --path ../../plugin
61
+ - name: Debug plugin installation
62
+ working-directory: ./etherpad-lite
63
+ run: |
64
+ echo "=== src/plugin_packages ==="
65
+ find ./src/plugin_packages -type f 2>/dev/null | head -50 || echo "directory not found"
66
+ echo "=== node_modules/ep_* ==="
67
+ ls -la ./node_modules/ 2>/dev/null | grep ep_ || echo "none"
68
+ echo "=== src/node_modules/ep_* ==="
69
+ ls -la ./src/node_modules/ 2>/dev/null | grep ep_ || echo "none"
70
+ echo "=== find all backend specs ==="
71
+ find . -path "*/static/tests/backend/specs/*" 2>/dev/null || echo "none found"
72
-
73
name: Run the backend tests
74
0 commit comments