23 lines
574 B
YAML
23 lines
574 B
YAML
name: Prettier
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
prettier:
|
|
name: Format Code
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
token: ${{ secrets.USERSTYLES_TOKEN }}
|
|
- name: Run Prettier
|
|
uses: creyD/prettier_action@v4.3
|
|
with:
|
|
commit_options: "--author 'github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>'"
|
|
commit_message: "style: format code with prettier"
|
|
prettier_options: "--write styles/**/*.css"
|
|
prettier_version: "2.8.4"
|