You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: 💄 GA-Misc - Check-Prettier
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '.github/**'
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
GA-Misc-Check-Prettier:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: 🐧 Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 2 # OR "2" -> To retrieve the preceding commit.
|
|
|
|
|
|
|
|
- name: Get all changed *.md file(s)
|
|
|
|
id: changed-md
|
|
|
|
run: |
|
|
|
|
echo "changed_files=$(git diff --name-only --merge-base master | grep "\.md$" | xargs)" >> $GITHUB_OUTPUT
|
|
|
|
|
|
|
|
- name: Run step if any *.md file(s) changed
|
|
|
|
if: steps.changed-md.outputs.changed_files != ''
|
|
|
|
run: |
|
|
|
|
npm i -g prettier
|
|
|
|
npx prettier -c ${{ steps.changed-md.outputs.changed_files }}
|