Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down
Loading