Skip to content

Commit eb909f0

Browse files
committed
Release 1.290.2025
1 parent db2402a commit eb909f0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,12 @@ jobs:
6868
$env:PSModulePath = "$modulesPath;$env:PSModulePath"
6969
Write-Host "PSModulePath: $env:PSModulePath" -ForegroundColor Cyan
7070
71-
# Import dependency modules
72-
$dependencies = @('GenXdev.Helpers', 'GenXdev.FileSystem', 'GenXdev.Windows')
71+
# Import dependency modules in correct order (dependencies first)
72+
$dependencies = @(
73+
'GenXdev.Helpers', # No dependencies
74+
'GenXdev.Windows', # Depends on Helpers
75+
'GenXdev.FileSystem' # Depends on Helpers, Windows
76+
)
7377
foreach ($dep in $dependencies) {
7478
$depPath = Join-Path $modulesPath $dep
7579
if (Test-Path $depPath) {

0 commit comments

Comments
 (0)