Installation
Clone the repository
Section titled “Clone the repository”git clone https://github.com/thulanek/semtest-runner.gitcd semtest-runnerConfigure npm registry
Section titled “Configure npm registry”Copy the .npmrc.example template so pnpm can resolve @thulanek scoped packages from GitHub Packages:
cp packages/semtest-runner/.npmrc.example .npmrcEdit .npmrc and replace YOUR_PAT_HERE with your GitHub PAT:
@thulanek:registry=https://npm.pkg.github.com//npm.pkg.github.com/:_authToken=ghp_xxxxxxxxxxxxInstall dependencies
Section titled “Install dependencies”pnpm installThis installs all workspace packages — the main @thulanek/semtest-runner package, public docs, and internal docs.
Verify
Section titled “Verify”Run a build to confirm everything resolves:
pnpm turbo run buildAll three workspaces (packages/semtest-runner, apps/docs, apps/internal-docs) should build successfully.