Merge pull request #109 from szepeviktor/typos #289
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: Format | |
on: | |
push: | |
paths: | |
- "**.md" | |
- "**.json" | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install | |
run: yarn install | |
env: | |
CI: true | |
- name: Run formatting tool | |
run: yarn style:fix | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "β¨ Apply formatting changes" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |