From e5a04932bb1f2d14e8a8a1805f31c9c021e09974 Mon Sep 17 00:00:00 2001 From: Nicolas Meienberger Date: Mon, 5 Jan 2026 19:52:00 +0100 Subject: [PATCH] ci: add oxlint action instead of biome --- .github/workflows/checks.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index ba422b66..3c88d2ca 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -25,9 +25,10 @@ jobs: - name: Install dependencies uses: "./.github/actions/install-dependencies" - - name: Run lint - shell: bash - run: bun run lint:ci + - uses: oxc-project/oxlint-action@latest + with: + config: .oxlintrc.json + deny-warnings: true - name: Run type checks shell: bash