We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 392ee9d commit a7bbfc6Copy full SHA for a7bbfc6
.github/workflows/lint.yaml
@@ -22,6 +22,9 @@ jobs:
22
- name: Install jsonld-lint
23
run: |
24
npm install -g jsonld-lint
25
+
26
+ - name: List globally installed npm packages
27
+ run: npm list -g --depth=0
28
29
- name: Check current working directory
30
run: pwd
@@ -31,7 +34,7 @@ jobs:
31
34
32
35
- name: Run JSON-LD lint checks
33
36
- find ./data/software-tools -name "*.jsonld" -print0 | xargs -0 -n1 jsonld-lint
37
+ find ./data/software-tools -name "*.jsonld" jsonld-lint
38
39
# - name: Set up Python 3.12
40
# uses: actions/setup-python@v5
0 commit comments