Skip to content

chore: bump oxfmt to ^0.58.0 and oxlint to ^1.73.0 #1396

chore: bump oxfmt to ^0.58.0 and oxlint to ^1.73.0

chore: bump oxfmt to ^0.58.0 and oxlint to ^1.73.0 #1396

Workflow file for this run

name: autofix.ci
on:
workflow_dispatch:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
autofix:
name: Lint and format
runs-on: ubuntu-latest
permissions:
contents: read
if: github.actor != 'github-actions[bot]' && github.event.pull_request.head.repo.full_name == github.repository
steps:
- name: Check out code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 2
- name: Setup Tools
uses: kubb-labs/config/.github/setup@d2daeb58eb7dc8c19d595c926b4788b7f682fb51 # main
with:
node-version: '22.22.3'
- name: Fix formatting
run: pnpm run format
- name: Fix linting
run: pnpm run lint:fix
- name: Apply fixes
uses: autofix-ci/action@c5b2d67aa2274e7b5a18224e8171550871fc7e4a # v1
with:
commit-message: 'ci: apply linting and formating'
comment: Auto fix applied for linting and formating