Skip to content

Commit

Permalink
Merge pull request #1443 from jvanbruegge/fix-lint
Browse files Browse the repository at this point in the history
ci: fix escaping of strings in jq command
  • Loading branch information
zurdi15 authored Jan 8, 2025
2 parents 13f2afb + 90656c9 commit 3f2021e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ jobs:

- name: Lockfile lint
run: |
[ -z "$(jq -r '.packages | to_entries[] | select((.key | contains(\"node_modules\")) and (.value | has(\"resolved\") | not)) | .key' < package-lock.json)" ]
[ -z "$(jq -r '.packages | to_entries[] | select((.key | contains("node_modules")) and (.value | has("resolved") | not)) | .key' < package-lock.json)" ]
working-directory: frontend

0 comments on commit 3f2021e

Please sign in to comment.