Skip to content

Commit

Permalink
Update linting.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tkchafin authored Sep 24, 2024
1 parent 571b137 commit abee762
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,13 @@ jobs:
run: npm install -g editorconfig-checker

- name: Run ECLint check
run: editorconfig-checker -exclude README.md $(find .* -type f | grep -v '.git\|.py\|.md\|json\|yml\|yaml\|html\|css\|work\|.nextflow\|build\|nf_core.egg-info\|log.txt\|Makefile')
run: |
files=$(find .* -type f | grep -v '.git\|.py\|.md\|json\|yml\|yaml\|html\|css\|work\|.nextflow\|build\|nf_core.egg-info\|log.txt\|Makefile')
if [ -n "$files" ]; then
editorconfig-checker -exclude README.md $files
else
echo "No files found to check."
fi
Prettier:
runs-on: ubuntu-latest
Expand Down

0 comments on commit abee762

Please sign in to comment.