integration-tests
Pass
Audited by Gen Agent Trust Hub on Mar 20, 2026
Risk Level: SAFECOMMAND_EXECUTION
Full Analysis
- Command Execution: The skill executes a sequence of shell commands using
pnpm(pnpm i,pnpm build:ci,pnpm local-npm:reset,pnpm local-npm:publish, andpnpm test:integration). These commands are used to prepare the environment, build the project, and run tests. This is a standard practice for developer-oriented tools intended to automate repository tasks. - Subprocess Management: The workflow involves starting a background process for a local npm registry (Verdaccio) and later terminating it using process signals or PIDs. This pattern is used to ensure that the testing environment is isolated and that resources are correctly cleaned up after the task is completed.
- Local Network Activity: The skill references
http://localhost:4873, which is the standard local port for Verdaccio. Interacting with local services is typical for integration testing to avoid dependencies on external network resources or public registries during development. - File System Access: The skill may read from
integration-tests/README.mdto provide troubleshooting steps if a specific command fails. This is an informative feature to help users resolve environment-specific issues.
Audit Metadata