This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
$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
|
||||
Reference in New Issue
Block a user