arthas/.github/workflows/auto-prettier.yaml
2022-07-18 12:54:20 +08:00

21 lines
432 B
YAML

name: auto prettier
on:
push:
paths:
- 'site/**'
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Prettify code
uses: creyD/prettier_action@v4.2
with:
prettier_options: --config ./site/.prettierrc.json --ignore-path ./site/.prettierignore --write ./site