mirror of
https://github.com/doocs/advanced-java.git
synced 2025-01-29 06:40:29 +08:00
a1dbe5a934
添加 Gitee Pages Action: https://github.com/yanglbme/gitee-pages-action
23 lines
447 B
YAML
23 lines
447 B
YAML
name: Prettier
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
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:
|
|
prettier_options: --write **/*.{html,js,md}
|
|
commit_message: 'style: prettify code'
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |