From 92fa6118841d49a4148cfd1c6ac0fcd4d28391ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl?= <35407363+EniumRaphael@users.noreply.github.com> Date: Mon, 18 Aug 2025 12:31:35 +0200 Subject: [PATCH] chore(action/bun): adding the check of norme / eslint --- .github/workflows/bun.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml index 1c0b0ff..7ccabb4 100644 --- a/.github/workflows/bun.yml +++ b/.github/workflows/bun.yml @@ -21,8 +21,8 @@ jobs: - name: Install dependencies (cached) run: bun install --frozen-lockfile - name: Check liniting - run: bunx eslint . --fix && bunx eslint . + run: bunx eslint . --max-warnings=0 - name: Check norme - run: bunx prettier --write . && bunx prettier --check . + run: bunx prettier --check . - name: Build run: bun run build