41 lines
1.3 KiB
YAML
41 lines
1.3 KiB
YAML
name: Prettier code formatter (PR)
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
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: PR comment with html diff
|
|
# https://docs.github.com/en/actions/learn-github-actions/expressions#failure-with-conditions
|
|
if: ${{ failure() && steps.prettier.conclusion == 'failure' }}
|
|
uses: thollander/actions-comment-pull-request@v2
|
|
with:
|
|
filePath: diff.html
|