Merge pull request #153 from fogbender/feat/update-react-router #426
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
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout actions | |
uses: actions/checkout@v3 | |
- name: Prepare actions | |
uses: ./.github/actions/prepare | |
- name: Prettier | |
run: yarn fmt --check --write=false | |
- uses: mshick/add-pr-comment@v2 | |
if: failure() | |
with: | |
message-failure: | | |
Uh oh! Prettier found some formatting issues. Please run `yarn fix` and commit the changes. | |
name: Prettier | |
on: | |
pull_request: ~ | |
merge_group: ~ | |
push: | |
branches: | |
- main |