Curated Examples
Run a PowerForge.Web quality pipeline
Run a CI-style PowerForge.Web pipeline for a website.
This pattern is useful when you want the same checks locally that CI should enforce for a website.
It is adapted from Docs/PowerForge.Web.WebsiteStarter.md.
Example
$env:POWERFORGE_ROOT = 'C:\Support\GitHub\PSPublishModule'
Set-Location 'C:\Support\GitHub\Website'
powerforge-web pipeline --config .\pipeline.json --mode ci
What this demonstrates
- making the engine root explicit
- running the site pipeline in CI mode
- letting baselines and fail-on-new-issue policy catch regressions that a preview server may not report