From af1e6f511a9ccd3fc9b9b686939731a8ae5c8283 Mon Sep 17 00:00:00 2001 From: Jan Calanog Date: Thu, 19 Feb 2026 22:16:42 +0100 Subject: [PATCH] Extract lint into it's own job --- .github/workflows/ci.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7104a713..0fa72d3cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -121,6 +121,18 @@ jobs: run: npm run test + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + + - name: Bootstrap Action Workspace + id: bootstrap + uses: ./.github/actions/bootstrap + + - name: Lint + run: dotnet run --project build -c release -- lint + build: runs-on: ${{ matrix.os }} strategy: @@ -146,8 +158,8 @@ jobs: - name: Install Aspire workload run: dotnet workload install aspire - - name: Build - run: dotnet run --project build -c release + - name: Compile + run: dotnet run --project build -c release -- compile - name: Test run: dotnet run --project build -c release -- unit-test