Skip to content

DSL v1.0.0-alpha1

DSL v1.0.0-alpha1 #161

Triggered via pull request September 2, 2024 09:42
Status Success
Total duration 1m 2s
Artifacts

build-dotnet.yml

on: pull_request
Matrix: build
Fit to window
Zoom out
Zoom in

Annotations

11 warnings
build (8.0.x)
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions/setup-dotnet@v2. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
build (8.0.x): src/runner/Synapse.Runner/Services/Executors/RaiseTaskExecutor.cs#L36
Dereference of a possibly null reference.
build (8.0.x): src/runner/Synapse.Runner/Services/Executors/WaitTaskExecutor.cs#L38
Avoid using async lambda for a void returning delegate type, because any exceptions not handled by the delegate will crash the process (https://github.com/Microsoft/vs-threading/blob/main/doc/analyzers/VSTHRD101.md)
build (8.0.x): src/runner/Synapse.Runner/Services/TaskExecutor.cs#L170
Avoid awaiting or returning a Task representing work that was not started within your context as that can lead to deadlocks.
build (8.0.x): src/runner/Synapse.Runner/Services/WorkflowExecutor.cs#L235
Avoid "async void" methods, because any exceptions not handled by the method will crash the process (https://github.com/Microsoft/vs-threading/blob/main/doc/analyzers/VSTHRD100.md)
build (8.0.x): src/runner/Synapse.Runner/Services/TaskExecutor.cs#L412
Avoid "async void" methods, because any exceptions not handled by the method will crash the process (https://github.com/Microsoft/vs-threading/blob/main/doc/analyzers/VSTHRD100.md)
build (8.0.x): src/runner/Synapse.Runner/Services/TaskExecutor.cs#L412
Avoid "Async" suffix in names of methods that do not return an awaitable type (https://github.com/Microsoft/vs-threading/blob/main/doc/analyzers/VSTHRD200.md)
build (8.0.x): src/dashboard/Synapse.Dashboard/Components/MonacoEditor/Store.cs#L51
Parameter 'IMonacoEditorHelper monacoEditorHelper' is captured into the state of the enclosing type and its value is also used to initialize a field, property, or event.