Merge pull request #1635 from RooVetGit/contributors_prettier

Run prettier before checking for contributor changes
This commit is contained in:
Matt Rubens 2025-03-14 00:13:55 -04:00 committed by GitHub
commit b893eea252
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,9 +24,10 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Update contributors and check for changes
- name: Update contributors and format
run: |
npm run update-contributors
npx prettier --write README.md
if git diff --quiet README.md; then echo "changes=false" >> $GITHUB_OUTPUT; else echo "changes=true" >> $GITHUB_OUTPUT; fi
id: check-changes
env: