Revert commit d48955dc3b43463af0b8ead3de9cf1c53d9241f2 #209
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: Auto Formatting | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Prettier | |
run: | | |
npm install --global prettier | |
- name: Format with Prettier | |
run: prettier --write "**/*.{js,jsx,md,css,yaml}" | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Apply Prettier Formatting Fixes |