Skip to content

feat: add prettier-plugin-tailwindcss to prettier config #9

feat: add prettier-plugin-tailwindcss to prettier config

feat: add prettier-plugin-tailwindcss to prettier config #9

Workflow file for this run

name: Format Code
on:
workflow_dispatch:
push:
branches:
- main
env:
token: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- uses: pnpm/action-setup@v3
with:
version: latest
- run: pnpm install
- name: Format Code
run: |
pnpm exec prettier . --write
- name: Commit changes
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
git add .
git commit -am "chore: format code" || true
git push