### Install Dependencies via pnpm Source: https://github.com/nuxt/ecosystem-ci/blob/main/README.md Installs project dependencies using the pnpm package manager. This is a standard setup step after cloning the repository. ```Shell pnpm i ``` -------------------------------- ### Run All Test Suites via pnpm Source: https://github.com/nuxt/ecosystem-ci/blob/main/README.md Executes all configured integration test suites using the pnpm test script. ```Shell pnpm test ``` -------------------------------- ### Run Specific Test Suite via pnpm Source: https://github.com/nuxt/ecosystem-ci/blob/main/README.md Executes a single, specified integration test suite using the pnpm test script. Replace with the name of the desired suite. ```Shell pnpm test ``` -------------------------------- ### Run Ecosystem CI Script via tsx Source: https://github.com/nuxt/ecosystem-ci/blob/main/README.md Directly executes the main ecosystem CI script using tsx, a tool for running TypeScript/JavaScript files. This provides more direct control over the test execution. ```Shell tsx ecosystem-ci.ts ``` -------------------------------- ### Trigger Ecosystem CI Run via PR Comment Source: https://github.com/nuxt/ecosystem-ci/blob/main/README.md Triggers a full ecosystem CI run by commenting on a Pull Request in the nuxt/nuxt repository. Requires triage permissions. ```Other /ecosystem-ci run ``` -------------------------------- ### Trigger Specific Ecosystem CI Suite via PR Comment Source: https://github.com/nuxt/ecosystem-ci/blob/main/README.md Triggers a specific ecosystem CI test suite by commenting on a Pull Request. Replace with the name of the desired suite. Requires triage permissions. ```Other /ecosystem-ci run ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.