Skip to content

Commit 0b361b9

Browse files
ci: add more debug output for dist directory investigation
1 parent a5f097a commit 0b361b9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,10 @@ jobs:
7070
working-directory: packages/wasm-utxo
7171

7272
- name: Build wasm-utxo
73-
run: npm run build
73+
run: |
74+
npm run build
75+
echo "=== Build complete, checking output ==="
76+
ls -la dist/esm/ | head -20 || echo "dist/esm not found"
7477
working-directory: packages/wasm-utxo
7578

7679
- name: Debug workspace setup
@@ -79,6 +82,8 @@ jobs:
7982
ls -la node_modules/@bitgo/
8083
echo "=== Checking wasm-utxo dist ==="
8184
ls -la packages/wasm-utxo/dist/ || echo "dist directory not found"
85+
echo "=== Listing all files in dist/esm ==="
86+
ls -la packages/wasm-utxo/dist/esm/ || echo "esm directory not found"
8287
echo "=== Checking if dist/esm/index.js exists ==="
8388
ls -la packages/wasm-utxo/dist/esm/index.js || echo "index.js not found"
8489
echo "=== Checking package.json exports from symlink ==="

0 commit comments

Comments
 (0)