CON-3189 Fix the piscine structure in AI
branch
#865
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
name: π GA-Misc - Check-Prettier | |
on: | |
pull_request: | |
paths-ignore: | |
- '.github/**' | |
branches: [master] | |
jobs: | |
GA-Misc-Check-Prettier: | |
name: π Run Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: π§ Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: π Get all changed *.md file(s) | |
id: changed-md | |
run: | | |
echo "changed_files=$(git diff --name-only --diff-filter=ACMRT --merge-base origin/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 }} |