Merge pull request #257 from Marukome0743/pr257 #700
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: autofix.ci | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
- name: Delete lock files | |
run: rm bun.lockb yarn.lock | |
- name: Update dependencies | |
run: bun update | |
- name: Run Biome | |
run: bunx @biomejs/biome ci . | |
- name: Commit | |
uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc |