mirror of
https://gitee.com/arthas/arthas.git
synced 2024-12-04 13:17:59 +08:00
21 lines
432 B
YAML
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 |