1 parent 48b2731 commit c45868aCopy full SHA for c45868a
1 file changed
.github/workflows/test.yml
@@ -34,9 +34,14 @@ jobs:
34
35
- name: Test vlt basic functionality
36
run: |
37
- vlt --help
38
- vlr --help || true # vlr might not have help
39
- vlx --help || true # vlx might not have help
+ vlt --help || echo "vlt --help failed"
+ which vlt || echo "vlt not found in PATH"
+ ls -la $(npm bin -g)/ || echo "Could not list global bin directory"
40
+
41
+ - name: Check npm and node versions
42
+ run: |
43
+ node --version
44
+ npm --version
45
46
- name: Test setup-vlt with specific version
47
uses: ./
0 commit comments