Skip to content

Commit c478e45

Browse files
committed
Update README.md
1 parent 4565a97 commit c478e45

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Import-Module -Name 'hugoalh.GitHubActionsToolkit' -Prefix 'GitHubActions' -Scop
4949
| **Legend** | **Description** |
5050
|:-:|:--|
5151
| 🧪 | **Experimental:** This is in testing, maybe available in the latest version and/or future version. |
52-
| 🔘 | **NodeJS Wrapper:** This dependents and requires NodeJS to execute. |
52+
| 🔘 | **NodeJS Wrapper:** This dependents and requires NodeJS to invoke. |
5353

5454
#### Function
5555

hugoalh.GitHubActionsToolkit/module/nodejs-invoke.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Function Invoke-NodeJsWrapper {
2525
[Parameter(Mandatory = $True, Position = 1)][Alias('Input', 'Object', 'Parameter', 'Parameters')][PSCustomObject]$InputObject
2626
)
2727
If (!(Test-GitHubActionsNodeJsEnvironment)) {
28-
Write-Error -Message 'This function require to execute with compatible NodeJS and NPM environment!' -Category 'ResourceUnavailable'
28+
Write-Error -Message 'This function requires to invoke with the compatible NodeJS and NPM environment!' -Category 'ResourceUnavailable'
2929
Return
3030
}
3131
[String]$WrapperFullName = Join-Path -Path $WrapperRoot -ChildPath $Path

hugoalh.GitHubActionsToolkit/module/utility.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Function Test-Environment {
140140
[Switch]$StepSummary,
141141
[Switch]$ToolCache,
142142
[Alias('Require', 'Required')][Switch]$Mandatory,
143-
[Alias('RequiredMessage', 'RequireMessage')][String]$MandatoryMessage = 'This process require to execute inside the GitHub Actions environment!'
143+
[Alias('RequiredMessage', 'RequireMessage')][String]$MandatoryMessage = 'This process requires to invoke inside the GitHub Actions environment!'
144144
)
145145
If (
146146
$Env:CI -ine 'true' -or

0 commit comments

Comments
 (0)