Skip to content

Commit 2f29115

Browse files
committed
Fix CI workflow to verify the correct build output path for the main SDK
1 parent 397d35f commit 2f29115

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
ls -l dist/example/
6767
- name: Verify build output
6868
run: |
69-
if [ ! -f dist/index.js ]; then echo "dist/index.js not found!" && exit 1; fi
70-
node -e "import('./dist/index.js').then(() => console.log('✅ Main SDK imports successfully'))"
69+
if [ ! -f dist/src/index.js ]; then echo "dist/src/index.js not found!" && exit 1; fi
70+
node -e "import('./dist/src/index.js').then(() => console.log('✅ Main SDK imports successfully'))"
7171
- name: Test example scripts
7272
run: |
7373
echo "Testing compiled examples..."

0 commit comments

Comments
 (0)