DEV: Add hbs prettier checks to GitHub CI

We have already formatted all hbs files, but we didn't update the linting CI check to include them.
This commit is contained in:
David Taylor 2023-02-02 12:01:15 +00:00
parent 2e78045af1
commit 6b01105cb9

View File

@ -87,8 +87,10 @@ jobs:
yarn pprettier --list-different \
"app/assets/stylesheets/**/*.scss" \
"app/assets/javascripts/**/*.js" \
"app/assets/javascripts/**/*.hbs" \
"plugins/**/assets/stylesheets/**/*.scss" \
"plugins/**/assets/javascripts/**/*.js"
"plugins/**/assets/javascripts/**/*.js" \
"plugins/**/assets/javascripts/**/*.hbs" \
- name: Ember template lint
if: ${{ !cancelled() }}