Skip to content

Commit

Permalink
remove prettier and remove customize from brokel link link checker
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Moeen committed Jul 6, 2024
1 parent 8493f34 commit eafe663
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 47 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/broken-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ jobs:
with:
fail: true
# removed md files that include liquid tags
args: --user-agent 'curl/7.54' --exclude-path README.md --exclude-path _pages/404.md --exclude-path _pages/blog.md --exclude-path _posts/2018-12-22-distill.md --verbose --no-progress './**/*.md' './**/*.html'
args: --user-agent 'curl/7.54' --exclude-path README.md --exclude-path _pages/404.md --exclude-path _pages/blog.md --exclude-path CUSTOMIZE.md --verbose --no-progress './**/*.md' './**/*.html'
92 changes: 46 additions & 46 deletions .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
name: Prettier code formatter
# name: Prettier code formatter

on:
pull_request:
branches:
- master
- main
push:
branches:
- master
- main
# on:
# pull_request:
# branches:
# - master
# - main
# push:
# 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: Dispatch information to repository 🗣️
if: ${{ failure() && steps.prettier.conclusion == 'failure' && github.event_name == 'pull_request' }}
uses: peter-evans/repository-dispatch@v2
with:
event-type: prettier-failed-on-pr
client-payload: '{"pr_number": "${{ github.event.number }}", "artifact_url": "${{ steps.artifact-upload.outputs.artifact-url }}", "run_id": "${{ github.run_id }}"}'
# 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: Dispatch information to repository 🗣️
# if: ${{ failure() && steps.prettier.conclusion == 'failure' && github.event_name == 'pull_request' }}
# uses: peter-evans/repository-dispatch@v2
# with:
# event-type: prettier-failed-on-pr
# client-payload: '{"pr_number": "${{ github.event.number }}", "artifact_url": "${{ steps.artifact-upload.outputs.artifact-url }}", "run_id": "${{ github.run_id }}"}'

0 comments on commit eafe663

Please sign in to comment.