26 lines
600 B
YAML
26 lines
600 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 }}
|
|
- uses: actions/setup-node@v3
|
|
|
|
- name: Run Prettier
|
|
run: npx prettier --write styles/**/*.css
|
|
|
|
- name: Push Changes
|
|
uses: stefanzweifel/git-auto-commit-action@v4
|
|
with:
|
|
commit_message: "style: format code with prettier"
|
|
commit_author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
|