Skip to content

Merge pull request #74 from natemoo-re/chore/upgrade #1

Merge pull request #74 from natemoo-re/chore/upgrade

Merge pull request #74 from natemoo-re/chore/upgrade #1

Workflow file for this run

name: Format
on:
push:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- run: pnpm run format
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[ci] format"
branch: ${{ github.head_ref }}
commit_author: ${{ github.event.commits[0].author.name }} <${{ github.actor }}@users.noreply.github.com>