Skip to content

Commit 18d9476

Browse files
committed
20230207D
1 parent 24b834c commit 18d9476

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

hugoalh.GitHubActionsToolkit/module/command-base.psm1

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ Import-Module -Name (
1111
GitHub Actions - Clear File Command
1212
.DESCRIPTION
1313
Clear the file commands.
14-
.PARAMETER Type
15-
Types of the file commands.
1614
.OUTPUTS
1715
[Void]
1816
#>
@@ -114,7 +112,7 @@ Value.
114112
[Void]
115113
#>
116114
Function Write-FileCommand {
117-
[CmdletBinding()]
115+
[CmdletBinding(HelpUri = 'https://github.com/hugoalh-studio/ghactions-toolkit-powershell/wiki/api_function_write-githubactionsfilecommand#Write-GitHubActionsFileCommand')]
118116
[OutputType([Void])]
119117
Param (
120118
[Parameter(Mandatory = $True, Position = 0, ValueFromPipelineByPropertyName = $True)][String]$LiteralPath,

hugoalh.GitHubActionsToolkit/module/nodejs-test.psm1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Function Test-NodeJsEnvironment {
1818
[CmdletBinding()]
1919
[OutputType([Boolean])]
2020
Param (
21-
[Alias('Reinstall', 'ReinstallDependency', 'ReinstallPackage', 'ReinstallPackages')][Switch]$ReinstallDependencies,# Deprecated, keep as legacy.
22-
[Alias('Redo')][Switch]$Retest
21+
[Alias('Redo')][Switch]$Retest,
22+
[Alias('Reinstall', 'ReinstallDependency', 'ReinstallPackage', 'ReinstallPackages')][Switch]$ReinstallDependencies# Deprecated, keep as legacy.
2323
)
2424
If ($EnvironmentTested -and !$Retest.IsPresent) {
2525
Write-Verbose -Message 'Previously tested NodeJS environment; Return previous result.'

0 commit comments

Comments
 (0)