Skip to content

Commit ee013e5

Browse files
Debugg steps
1 parent 4d03f13 commit ee013e5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/lint.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,16 @@ jobs:
2323
run: |
2424
npm install -g jsonld-lint
2525
npm list -g --depth=0
26+
echo "npm global binaries path:"
27+
echo $(npm prefix -g)/bin
28+
which jsonld-lint || echo "jsonld-lint not found"
2629
2730
- name: Debug environment variables and paths
2831
run: |
2932
echo "PATH: $PATH"
30-
echo "npm bin global path: $(npm bin -g)"
31-
ls -al $(npm bin -g)
32-
which jsonld-lint # Check if jsonld-lint is found
33+
echo "npm global binaries path: $(npm prefix -g)/bin"
34+
ls -al $(npm prefix -g)/bin
35+
which jsonld-lint
3336
3437
- name: Run JSON-LD lint checks on each .jsonld file
3538
run: |

0 commit comments

Comments
 (0)