Skip to content

Commit 50730d2

Browse files
committed
Updating workflow, README and aliases
1 parent 26dfce2 commit 50730d2

3 files changed

Lines changed: 475 additions & 8 deletions

File tree

.github/workflows/CI.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,15 @@ jobs:
1010
os: [ubuntu-latest, windows-latest, macOS-latest]
1111
steps:
1212
- uses: actions/checkout@v1
13+
- name: Install and cache PowerShell modules
14+
id: psmodulecache
15+
uses: potatoqualitee/psmodulecache@v6.2.1
16+
with:
17+
modules-to-cache: BuildHelpers, Pester, psake, PowerShellBuild, PSScriptAnalyzer
18+
- name: Build
19+
shell: pwsh
20+
run: ./build.ps1 -Task Build
1321
- name: Test
1422
shell: pwsh
15-
run: ./build.ps1 -Task Test -Bootstrap
23+
run: ./build.ps1 -Task Test
1624

PSFluentObjectValidation/PSFluentObjectValidation.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
FunctionsToExport = @('Test-Exists', 'Assert-Exists')
1111
CmdletsToExport = @()
1212
VariablesToExport = '*'
13-
AliasesToExport = @('exists', 'asserts')
13+
AliasesToExport = @('exists', 'asserts', 'tests')
1414
PrivateData = @{
1515
PSData = @{
1616
Tags = @()
@@ -19,4 +19,4 @@
1919
ReleaseNotes = ''
2020
}
2121
}
22-
}
22+
}

0 commit comments

Comments
 (0)