🆙bump: update dependencies #1581
Workflow file for this run
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: | |
pull_request: | |
push: | |
branches: main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
quality: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: canary | |
- name: Update dependencies | |
run: bun update | |
- name: Run Biome | |
run: bunx biome ci --reporter=github | |
- name: Commit | |
uses: autofix-ci/[email protected] |