Skip to content

Commit

Permalink
ci(stylelint): simultaneously check css and scss files (openemr#6703)
Browse files Browse the repository at this point in the history
  • Loading branch information
raskolnikov-rodion authored Jul 30, 2023
1 parent 6003f40 commit 577d2fe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/styling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ jobs:
- name: Check CSS Styling
run: |
failTest=false
npx stylelint "**/*.css" || failTest=true
npx stylelint "**/*.scss" || failTest=true
npx stylelint "**/*.{css,scss}" || failTest=true
if $failTest; then
exit 1
fi

0 comments on commit 577d2fe

Please sign in to comment.