From 6b01105cb9ee455a28edfb7e4d1ad359e0c955a9 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 2 Feb 2023 12:01:15 +0000 Subject: [PATCH] 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. --- .github/workflows/linting.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index b2125eea167..984a9d104b7 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -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() }}