We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e86fb7 commit fa8d388Copy full SHA for fa8d388
1 file changed
.github/workflows/ci.yml
@@ -36,11 +36,11 @@ jobs:
36
37
- name: Verify environment
38
run: |
39
- echo "Node version: $(node --version)"
40
- echo "npm version: $(npm --version)"
41
- echo "Python version: $(python --version)"
42
- echo "Package version: $(node -p "require('./package.json').version")"
43
- ls -la test/fixtures/
+ node --version
+ npm --version
+ python --version
+ node -e "console.log('Package version:', require('./package.json').version)"
+ ls -la test/fixtures/ || echo "No fixtures directory"
44
45
- name: Install Node.js dependencies
46
run: npm ci
0 commit comments