md/.github/workflows/prettier.yml

24 lines
477 B
YAML
Raw Normal View History

2020-10-20 19:42:33 +08:00
name: Prettier
on:
pull_request:
push:
branches:
2020-11-23 09:38:30 +08:00
- 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
uses: creyD/prettier_action@v3.0
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 }}