mirror of
https://github.com/9p4/jellyfin-plugin-sso.git
synced 2026-01-29 09:43:46 -05:00
21 lines
378 B
YAML
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}'
|