Skip to content

Merge branch 'main' of https://github.com/flamingchickens1540/inflate… #10

Merge branch 'main' of https://github.com/flamingchickens1540/inflate…

Merge branch 'main' of https://github.com/flamingchickens1540/inflate… #10

Workflow file for this run

name: Format
on:
push:
pull_request:
jobs:
format:
runs-on: ubuntu-latest
name: Format Files
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
- run: bun install
- name: Prettier
run: bun run format ./src
env:
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
- uses: stefanzweifel/git-auto-commit-action@v4
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
with:
commit_message: 'style: format files'