### Run Guidepup Setup Command Source: https://github.com/guidepup/setup/blob/main/README.md Execute the primary setup command for Guidepup. This is the initial step to get started with screen reader automation. ```console npx @guidepup/setup ``` -------------------------------- ### Run Guidepup Setup in CI Source: https://github.com/guidepup/setup/blob/main/README.md Use the `--ci` flag when running setup in a CI/CD environment. This prevents interactive prompts and automates the setup process. ```console npx @guidepup/setup --ci ``` -------------------------------- ### Setup Guidepup in GitHub Actions Source: https://github.com/guidepup/setup/blob/main/README.md Integrate Guidepup setup into your GitHub Actions workflow. This ensures your CI environment is ready for screen reader automation. ```yaml - name: Setup Environment uses: guidepup/setup-action ``` -------------------------------- ### Skip TCC.db Updates during Setup Source: https://github.com/guidepup/setup/blob/main/README.md Use the `--ignore-tcc-db` flag to skip updating the TCC.db during setup. This is useful if updating the database is not possible or required. ```console npx @guidepup/setup --ignore-tcc-db ``` -------------------------------- ### Record Setup Issues in CI Source: https://github.com/guidepup/setup/blob/main/README.md Pass the `--record` flag along with `--ci` to capture a screen recording of the setup process. This helps diagnose errors encountered in CI environments on macOS. ```console npx @guidepup/setup --ci --record ``` -------------------------------- ### Specify NVDA Installation Directory Source: https://github.com/guidepup/setup/blob/main/README.md Use the `--nvda-install-dir` flag to specify a custom directory for NVDA installation on Windows. This allows control over where the portable NVDA instance is placed. ```console npx @guidepup/setup --nvda-install-dir ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.