WHY THE FUCK IS THIS NOT BUILT INTO PRETTIER

This commit is contained in:
Mm2PL 2023-02-28 23:24:09 +01:00
parent 76065683ef
commit 7d2fd1eed5
No known key found for this signature in database
GPG key ID: 94AC9B80EFA15ED9

View file

@ -18,8 +18,11 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Check formatting with Prettier - name: Reformat with Prettier
uses: actionsx/prettier@e90ec5455552f0f640781bdd5f5d2415acb52f1a uses: actionsx/prettier@e90ec5455552f0f640781bdd5f5d2415acb52f1a
with: with:
# prettier CLI arguments. # prettier CLI arguments.
args: --check . args: --write .
- name: Show diff
run: git --no-pager diff --exit-code --color=never
shell: bash