Skip to content

Commit fa8d388

Browse files
author
Demo User
committed
ci: fix verify environment step syntax
1 parent 3e86fb7 commit fa8d388

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636
3737
- name: Verify environment
3838
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/
39+
node --version
40+
npm --version
41+
python --version
42+
node -e "console.log('Package version:', require('./package.json').version)"
43+
ls -la test/fixtures/ || echo "No fixtures directory"
4444
4545
- name: Install Node.js dependencies
4646
run: npm ci

0 commit comments

Comments
 (0)