Files
jellyfin-plugin-sso/.github/workflows/prettier.yml
2022-05-14 09:09:33 -04:00

21 lines
378 B
YAML

name: Prettier Lint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Prettify code
uses: creyD/prettier_action@v4.2
with:
dry: True
prettier_options: '--check **/*.{js,html,md,css,scss}'