We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3afa22b + 5a6c51d commit ead0e38Copy full SHA for ead0e38
1 file changed
.github/workflows/ci.yml
@@ -12,6 +12,7 @@ jobs:
12
test-dotnet:
13
name: Build and Test (.NET)
14
runs-on: ubuntu-latest
15
+ timeout-minutes: 15
16
permissions:
17
contents: read
18
@@ -30,7 +31,10 @@ jobs:
30
31
run: dotnet build src/KustoLsp.Tests/KustoLspTests.csproj --no-restore
32
33
- name: Run tests
- run: dotnet test src/KustoLsp.Tests/KustoLspTests.csproj --no-build --verbosity normal
34
+ run: dotnet test src/KustoLsp.Tests/KustoLspTests.csproj --no-build --verbosity normal --logger "console;verbosity=normal" --blame-hang --blame-hang-timeout 60s
35
+ env:
36
+ DOTNET_CLI_TELEMETRY_OPTOUT: 1
37
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
38
39
lint-typescript:
40
name: Lint and Build (TypeScript)
0 commit comments