ci: update editorconfig check

This commit is contained in:
raf 2025-03-29 19:04:03 +03:00
parent e7d5e6c4ac
commit f3f818656d
No known key found for this signature in database
GPG key ID: 29D95B64378DB4BF

View file

@ -119,7 +119,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |
gh api \ gh api \
repos/notashelf/nvf/pulls/${{github.event.number}}/files --paginate \ repos/${{ github.repository }}/pulls/${{ github.event.number }}/files --paginate \
| jq '.[] | select(.status != "removed") | .filename' \ | jq '.[] | select(.status != "removed") | .filename' \
> "$HOME/changed_files" > "$HOME/changed_files"
@ -138,9 +138,7 @@ jobs:
- name: Checking EditorConfig - name: Checking EditorConfig
shell: bash shell: bash
run: | run: |
cat "$HOME/changed_files" | nix-shell -p editorconfig-checker.out \ < "$HOME/changed_files" nix-shell -p editorconfig-checker --run 'xargs -r editorconfig-checker -disable-indent-size'
--run 'xargs -r editorconfig-checker -disable-indentation -exclude flake.lock --verbose'
echo -n "Check status: $?"
- if: ${{ failure() }} - if: ${{ failure() }}
shell: bash shell: bash