forked from TencentOS/TencentOS-tiny
19 lines
505 B
YAML
19 lines
505 B
YAML
name: Format Docs and Code
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
# Make sure the actual branch is checked out when running on pull requests
|
|
ref: ${{ github.head_ref }}
|
|
ssh-key: ${{ secrets.ACTION_PUSH }}
|
|
|
|
- name: Prettify code
|
|
uses: creyD/prettier_action@v4.3
|
|
with:
|
|
prettier_options: --write **/*.{js,ts,css,html,yml,inc,json,md}
|