openOutpaint/.github/workflows/autoformat.yml
tim h f8ca9800c9 update prettier version
fingers crossed it magically fixes things
2023-03-12 10:27:14 -05:00

22 lines
497 B
YAML

name: Prettier Autoformatting
on:
push:
branches:
- "main"
- "testing"
pull_request:
branches: [main, testing]
types: [opened, synchronize, closed]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Prettify
uses: creyD/prettier_action@v4.3
with:
prettier_options: --write **/*.{js,html,css,md}