add Taskfile

upd tasks in launch.json

add with Task to Run tests in README
This commit is contained in:
2025-06-06 13:50:16 +01:00
parent a0a2c72634
commit bd0779add2
4 changed files with 19 additions and 21 deletions

11
Taskfile.yaml Normal file
View File

@@ -0,0 +1,11 @@
version: '3'
tasks:
test:
desc: 'Run tests'
preconditions:
- sh: 'pwsh -c "if ([System.Version](Get-InstalledModule Pester).Version.ToString() -gt [System.Version]"5.7.0") { exit 0 } else { exit 1 }"'
msg: 'Pester version must be greater than 5.7.0'
cmds:
- echo "Running tests..."
- pwsh -c "tests\run.ps1 {{.CLI_ARGS}}"