We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d03f13 commit ee013e5Copy full SHA for ee013e5
.github/workflows/lint.yaml
@@ -23,13 +23,16 @@ jobs:
23
run: |
24
npm install -g jsonld-lint
25
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"
29
30
- name: Debug environment variables and paths
31
32
echo "PATH: $PATH"
- echo "npm bin global path: $(npm bin -g)"
- ls -al $(npm bin -g)
- 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
36
37
- name: Run JSON-LD lint checks on each .jsonld file
38
0 commit comments