We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d5903a commit 32950b2Copy full SHA for 32950b2
.github/workflows/lint.yaml
@@ -18,15 +18,20 @@ jobs:
18
uses: actions/setup-node@v4
19
with:
20
node-version: "lts/*"
21
-
+
22
- name: Install jsonld-lint
23
run: |
24
npm install -g jsonld-lint
25
26
- - name: Verify jsonld-lint installation
+ npm list -g --depth=0
+ echo "npm bin path: $(npm bin -g)"
27
+ which jsonld-lint || echo "jsonld-lint not found"
28
29
+ - name: Debug environment variables and paths
30
31
+ echo "PATH: $PATH"
32
+ echo "npm bin global path: $(npm bin -g)"
33
+ ls -al $(npm bin -g)
34
which jsonld-lint
- jsonld-lint --version
35
36
- name: Run JSON-LD lint checks on each .jsonld file
37
0 commit comments