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