From 9edc9bb1d5e0bc1fb55b2a79beeeec1c345100cf 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 11:42:38 +0200 Subject: [PATCH] ci: add workflow to check linting and norme code before merging on master Adding the --- .github/workflows/bun.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml index f85ecc7..3d44adb 100644 --- a/.github/workflows/bun.yml +++ b/.github/workflows/bun.yml @@ -20,5 +20,9 @@ jobs: uses: oven-sh/setup-bun@v2 - name: Install dependencies (cached) run: bun install --frozen-lockfile + - name: Check liniting + run: bunx eslint . + - name: Check norme + run: bunx prettier --check . - name: Build run: bun run build