mirror of https://github.com/alibaba/arthas.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
468 B
YAML
21 lines
468 B
YAML
3 years ago
|
name: auto prettier
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- 'site-vuepress/**'
|
||
|
|
||
|
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-vuepress/.prettierrc.json --ignore-path ./site-vuepress/.prettierignore --write ./site-vuepress
|