Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
test-dotnet:
name: Build and Test (.NET)
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read

Expand All @@ -30,7 +31,10 @@ jobs:
run: dotnet build src/KustoLsp.Tests/KustoLspTests.csproj --no-restore

- name: Run tests
run: dotnet test src/KustoLsp.Tests/KustoLspTests.csproj --no-build --verbosity normal
run: dotnet test src/KustoLsp.Tests/KustoLspTests.csproj --no-build --verbosity normal --logger "console;verbosity=normal" --blame-hang --blame-hang-timeout 60s
env:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1

lint-typescript:
name: Lint and Build (TypeScript)
Expand Down
Loading