md/.github/workflows/prettier.yml

22 lines
459 B
YAML
Raw Normal View History

2020-10-20 19:42:33 +08:00
name: Prettier
on:
push:
2020-12-02 14:37:05 +08:00
branches: [ main ]
2020-10-20 19:42:33 +08:00
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Prettify code
2021-01-30 11:39:13 +08:00
uses: creyD/prettier_action@v3.3
2020-10-20 19:42:33 +08:00
with:
2020-10-20 19:59:47 +08:00
prettier_options: --write **/*.{html,js,md,vue,less,css}
2020-11-09 14:09:11 +08:00
commit_message: 'style: prettify code'
2020-10-20 19:42:33 +08:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}