Skip to content

Commit 32950b2

Browse files
Fix workflow
1 parent 2d5903a commit 32950b2

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/lint.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,20 @@ jobs:
1818
uses: actions/setup-node@v4
1919
with:
2020
node-version: "lts/*"
21-
21+
2222
- name: Install jsonld-lint
2323
run: |
2424
npm install -g jsonld-lint
25-
26-
- name: Verify jsonld-lint installation
25+
npm list -g --depth=0
26+
echo "npm bin path: $(npm bin -g)"
27+
which jsonld-lint || echo "jsonld-lint not found"
28+
29+
- name: Debug environment variables and paths
2730
run: |
31+
echo "PATH: $PATH"
32+
echo "npm bin global path: $(npm bin -g)"
33+
ls -al $(npm bin -g)
2834
which jsonld-lint
29-
jsonld-lint --version
3035
3136
- name: Run JSON-LD lint checks on each .jsonld file
3237
run: |

0 commit comments

Comments
 (0)