Skip to content

Merge branch 'hanya/timelinestyle' of https://github.com/flamingchick… #11

Merge branch 'hanya/timelinestyle' of https://github.com/flamingchick…

Merge branch 'hanya/timelinestyle' of https://github.com/flamingchick… #11

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'