Skip to content

build(deps-dev): bump prettier from 3.3.3 to 3.4.1 #109

build(deps-dev): bump prettier from 3.3.3 to 3.4.1

build(deps-dev): bump prettier from 3.3.3 to 3.4.1 #109

Workflow file for this run

name: Prettify Code
on:
pull_request:
jobs:
prettify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
fetch-deps: 0
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
- name: Run Prettier
run: |
pnpm i --save-dev prettier prettier-plugin-astro
pnpm dlx prettier --write **/*.{js,md,astro,ts} --tab-width 4
- uses: EndBug/add-and-commit@v9
with:
add: 'src'
author_name: Prettier
default_author: github_actions
fetch: false
message: 'Prettying'