turborepo
Audited by Runlayer on Mar 14, 2026
Malicious tool definition detected
For local dev and other CI: ### Local Development Setup ```bash # Authenticate with Vercel npx turbo login # Link repo to your Vercel team npx turbo link ``` This creates `.turbo/config.json` with your team info (gitignored by default).
Malicious tool definition detected
```bash turbo build --ui=tui # interactive terminal UI (default in TTY) turbo build --ui=stream # streaming logs (default in CI) ``` --- # turbo-ignore Full docs: https://turborepo.dev/docs/reference/turbo-ignore Skip CI work when nothing relevant changed. Useful for skipping container setup.
Malicious tool definition detected
Returns exit code 1 (build) if changes detected ### Options ```bash # Check specific package npx turbo-ignore web # Use specific comparison ref npx turbo-ignore --fallback=HEAD~1 # Verbose output npx turbo-ignore --verbose ``` ## Environment Variables Set environment variables in Vercel Dashboard: 1.
Malicious tool definition detected
## PR vs Main Branch Builds ### PR Builds: Only Affected Test only what changed in the PR: ```yaml - name: Test (PR) if: github.event_name == 'pull_request' run: turbo run build test --affected ``` ### Main Branch: Full Build Ensure complete validation on merge: ```yaml - name: Test (Main) if: github.ref == 'refs/heads/main' run: turbo run build test ``` ## Custom Git Ranges with --filter For advanced scenarios, use `--filter` with git refs: ```bash # Changes since specific commit turbo run test
Tool passed security scan
Tool passed security scan
Tool passed security scan
Passed Files (21)Click to expand
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan
Tool passed security scan