ci: add workflow to check linting and norme code before merging on master

Adding the
This commit is contained in:
Raphaël 2025-08-18 11:42:38 +02:00 committed by GitHub
parent 0058a17e3e
commit 9edc9bb1d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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