diff --git a/.github/workflows/coding-style.yml b/.github/workflows/coding-style.yml index af7e2b84..79f7581f 100644 --- a/.github/workflows/coding-style.yml +++ b/.github/workflows/coding-style.yml @@ -16,6 +16,23 @@ jobs: dotnet tool restore dotnet csharpier . --check + api: + name: "Lint api" + runs-on: ubuntu-latest + defaults: + run: + working-directory: ./api + steps: + - uses: actions/checkout@v4 + + - name: Setup Biome + uses: biomejs/setup-biome@v2 + with: + version: latest + + - name: Run Biome + run: biome ci . + front: name: "Lint Front" runs-on: ubuntu-latest diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 1b2e1949..01394462 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -29,6 +29,11 @@ jobs: label: migrations image: zoriya/kyoo_migrations + - context: ./api + dockerfile: Dockerfile + label: api + image: zoriya/kyoo_api + - context: ./front dockerfile: Dockerfile label: front