We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285ed16 commit 316632dCopy full SHA for 316632d
1 file changed
.github/workflows/ci.yml
@@ -171,6 +171,23 @@ jobs:
171
with:
172
name: npm-package
173
174
+ - name: Debug - Check artifact contents
175
+ run: |
176
+ echo "=== Checking downloaded artifact ==="
177
+ TARBALL=$(ls *.tgz)
178
+ echo "Tarball: $TARBALL"
179
+
180
+ # Extract and check the dist/index.js file
181
+ mkdir -p /tmp/artifact-check
182
+ tar -xzf "$TARBALL" -C /tmp/artifact-check
183
184
+ echo "First 10 lines of dist/index.js:"
185
+ head -10 /tmp/artifact-check/package/dist/index.js
186
187
+ echo ""
188
+ echo "Checking for .js extensions in imports:"
189
+ grep "from './" /tmp/artifact-check/package/dist/index.js || echo "No relative imports found"
190
191
- name: Test 1 - Global npm install
192
run: |
193
echo "=== Testing global npm install scenario ==="
0 commit comments