From c630d403e989085e0b6330e36adcc099625f7841 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Sun, 4 May 2025 10:59:51 +0200 Subject: [PATCH] let run inside module folder to use individuell biome configs --- .github/workflows/lint.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1c6be871f..08a41579d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,12 +13,12 @@ jobs: with: version: latest - name: Lint - Config-Schema - run: biome ci ./config-schema + run: cd ./config-schema && biome ci . - name: Lint - Backend - run: biome ci ./backend + run: cd ./backend && biome ci . - name: Lint - Database Up - run: biome ci ./database + run: cd ./database && biome ci . - name: Lint - DHT Node - run: biome ci ./dht-node + run: cd ./dht-node && biome ci . - name: Lint - Federation - run: biome ci ./federation \ No newline at end of file + run: cd ./federation && biome ci . \ No newline at end of file