Skip to content

build(deps-dev): bump prettier-plugin-tailwindcss from 0.5.13 to 0.5.… #295

build(deps-dev): bump prettier-plugin-tailwindcss from 0.5.13 to 0.5.…

build(deps-dev): bump prettier-plugin-tailwindcss from 0.5.13 to 0.5.… #295

Workflow file for this run

name: "Prettier"
on:
push:
branches: ["main"]
jobs:
fix:
name: Fix formatting issues
runs-on: ubuntu-latest
permissions:
actions: read
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GH_TOKEN }}
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: latest
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 21
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Format Using Prettier
run: pnpm prettier -w .
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Prettified Code