Files
ITWorx-Pulse-Public/scripts/bootstrap.ps1
T
ITWorx Pulse release export bd774932d5
Public source validation / validate (push) Failing after 3m8s
Publish ITWorx Pulse source
2026-09-03 02:09:19 +02:00

14 lines
384 B
PowerShell

$ErrorActionPreference = 'Stop'
Set-Location (Split-Path -Parent $PSScriptRoot)
foreach ($command in @('go', 'node', 'pnpm', 'python')) {
if (-not (Get-Command $command -ErrorAction SilentlyContinue)) {
throw "Required command not found: $command"
}
}
pnpm install --frozen-lockfile
go test ./...
pnpm test
Write-Host 'Bootstrap verification passed.' -ForegroundColor Green