Run Prettier on CI
GitHub Actions
To apply autofix for Prettier from GitHub Actions, do the following:
-
Install the
autofix.ci
GitHub App. -
Make sure you have a pinned version of Prettier installed in your repository.
-
Create
.github/workflows/prettier.yml
with following content:.github/workflows/prettier.ymlname: autofix.ci
on:
pull_request:
push:
permissions: {}
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- run: |
yarn
yarn prettier . --write
- uses: autofix-ci/action@v1
with:
commit-message: "Apply Prettier format"
For more information see autofix.ci website.