jobs:
prettier:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Prettify code
uses: creyD/prettier_action@v4.3
with:
same_commit: true
prettier_options: --write **/*.{js,md}
only_changed: true
test:
deploy:
needs: [test, prettier]