Skip to content

Commit fa1a08e

Browse files
committed
20220825A
1 parent 5fc94a8 commit fa1a08e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ body:
1818
description: "What versions are affected? Versions must be listed as supported in the Security Policy (/.github/SECURITY.md)."
1919
multiple: true
2020
options:
21+
- "v1.0.0"
2122
- "v0.5.5"
2223
- "v0.5.4"
2324
validations:

hugoalh.GitHubActionsToolkit/hugoalh.GitHubActionsToolkit.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
RootModule = 'hugoalh.GitHubActionsToolkit.psm1'
44

55
# Version number of this module.
6-
ModuleVersion = '0.5.5'
6+
ModuleVersion = '1.0.0'
77

88
# Supported PSEditions
99
# CompatiblePSEditions = @()

hugoalh.GitHubActionsToolkit/module/nodejs-test.psm1

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,15 @@ Function Test-NodeJsEnvironment {
5555
Return $EnvironmentResult
5656
}
5757
[String]$OriginalWorkingDirectory = (Get-Location).Path
58-
Write-Verbose -Message 'Test NodeJS dependencies.'
58+
Write-Verbose -Message 'Test NodeJS wrapper API dependencies.'
5959
Set-Location -LiteralPath $WrapperRoot
6060
Try {
61-
[String[]]$GetNpmPackageStatusResult = Invoke-Expression -Command 'npm outdated'
6261
If (
6362
$ReinstallDependencies.IsPresent -or
64-
$GetNpmPackageStatusResult -cmatch 'MISSING'
63+
([String[]](Invoke-Expression -Command 'npm outdated') -join "`n") -cmatch 'MISSING'
6564
) {
66-
Write-Verbose -Message 'Install/Reinstall dependencies.'
67-
Invoke-Expression -Command 'npm ci' | Out-Null
65+
Write-Verbose -Message 'Install/Reinstall NodeJS wrapper API dependencies.'
66+
Invoke-Expression -Command 'npm ci --no-audit --no-fund' | Out-Null
6867
If ($LASTEXITCODE -ine 0) {
6968
Throw
7069
}

hugoalh.GitHubActionsToolkit/module/nodejs-wrapper/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hugoalh.GitHubActionsToolkit/module/nodejs-wrapper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hugoalh/ghactions-toolkit-powershell-nodejs-wrapper",
3-
"version": "0.5.5",
3+
"version": "1.0.0",
44
"description": "A PowerShell module to provide a better and easier way for GitHub Actions to communicate with the runner machine, and the toolkit for developing GitHub Actions in PowerShell.",
55
"keywords": [
66
"gh-actions",

0 commit comments

Comments
 (0)