Skip to content

Format doctype as lowercase to match Prettier 3.0 (#370) #234

Format doctype as lowercase to match Prettier 3.0 (#370)

Format doctype as lowercase to match Prettier 3.0 (#370) #234

Workflow file for this run

name: 'Format Code'
on:
push:
branches:
- main
- next
jobs:
format:
runs-on: ubuntu-latest
name: 'Format: node-16, ubuntu-latest'
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install Tools & Dependencies
uses: ./.github/actions/install
- name: Format
run: pnpm format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: '[ci] format'
branch: ${{ github.head_ref }}