-
Notifications
You must be signed in to change notification settings - Fork 11.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
After some thorough testing, finally made prettier on PR work. Since an html file can't be used as comment on GitHub, changed to simply point to the action that failed and to the file containing the html diff. Signed-off-by: George Araújo <george.gcac@gmail.com>
- Loading branch information
1 parent
27d2fa0
commit bbaae0a
Showing
3 changed files
with
49 additions
and
50 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: Prettier code formatter (PR) | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
|
||
jobs: | ||
check: | ||
# available images: https://github.com/actions/runner-images#available-images | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v4 | ||
- name: Setup Node.js ⚙️ | ||
uses: actions/setup-node@v4 | ||
- name: Install Prettier 💾 | ||
run: npm install --save-dev --save-exact prettier @shopify/prettier-plugin-liquid | ||
- name: Prettier Check 🔎 | ||
id: prettier | ||
run: npx prettier . --check | ||
- name: Create diff 📝 | ||
# https://docs.github.com/en/actions/learn-github-actions/expressions#failure | ||
if: ${{ failure() }} | ||
run: | | ||
npx prettier . --write | ||
git diff -- . ':(exclude)package-lock.json' ':(exclude)package.json' > diff.txt | ||
npm install -g diff2html-cli | ||
diff2html -i file -s side -F diff.html -- diff.txt | ||
- name: Upload html diff ⬆️ | ||
id: artifact-upload | ||
if: ${{ failure() && steps.prettier.conclusion == 'failure' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: HTML Diff | ||
path: diff.html | ||
retention-days: 7 | ||
- name: PR comment with diff 💬 | ||
if: ${{ failure() && steps.prettier.conclusion == 'failure' }} | ||
uses: thollander/actions-comment-pull-request@v2 | ||
with: | ||
comment_tag: prettier-failed | ||
message: | | ||
Failed [prettier code check](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}). Check [this file](${{ steps.artifact-upload.outputs.artifact-url }}) for more information. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters