Skip to content

Commit

Permalink
Missed the INvm interface (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomhurst authored Nov 22, 2023
1 parent bf933db commit f4970cb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ModularPipelines.Build/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
null
NULL
3 changes: 3 additions & 0 deletions src/ModularPipelines.Node/INvm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ namespace ModularPipelines.Node;
public interface INvm
{
Task<CommandResult> Use(string version, CancellationToken cancellationToken = default);
Task<CommandResult> Install(string version, CancellationToken cancellationToken = default);

Check warning on line 8 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline-mac

Check warning on line 8 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline-windows

Check warning on line 8 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline

Check warning on line 8 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline

Task<CommandResult> Version(CancellationToken cancellationToken = default);

Check warning on line 9 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline-mac

Check warning on line 9 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline-windows

Check warning on line 9 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline

Check warning on line 9 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline

Task<CommandResult> Which(CancellationToken cancellationToken = default);

Check warning on line 10 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline-mac

Check warning on line 10 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline-windows

Check warning on line 10 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline

Check warning on line 10 in src/ModularPipelines.Node/INvm.cs

View workflow job for this annotation

GitHub Actions / pipeline

}

0 comments on commit f4970cb

Please sign in to comment.