chore: Improve workflows#62
Merged
Merged
Conversation
…m-workspace.yaml This change updates the pnpm-workspace.yaml file to include 'agent-browser' in the onlyBuiltDependencies list. This ensures that the 'agent-browser' package is built alongside other specified dependencies, improving the consistency and reliability of the build process. chore(turbo): update schema path in turbo.json This modification changes the schema path in turbo.json from an external URL to a local path pointing to the installed turbo package. This adjustment enhances the reliability of the schema reference, ensuring that it is always accessible regardless of network conditions.
Copilot started reviewing on behalf of
Patrick Lafrance (patricklafrance)
February 27, 2026 03:51
View session
commit: |
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request improves the workflow infrastructure by adding agent-browser as a workspace devDependency and updating configuration files to support better build reliability and schema validation.
Changes:
- Changed turbo.json schema reference from external URL to local node_modules path for offline reliability
- Added agent-browser to pnpm-workspace.yaml onlyBuiltDependencies list to ensure it's built during installation
- Updated GitHub Actions workflow to install dependencies first and add node_modules/.bin to PATH for direct agent-browser access
- Updated documentation to remove pnpx prefix requirement for agent-browser commands
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| turbo.json | Updated $schema path from external URL to local node_modules reference |
| pnpm-workspace.yaml | Added agent-browser to onlyBuiltDependencies list |
| package.json | Added agent-browser 0.15.1 as devDependency |
| pnpm-lock.yaml | Added agent-browser and its transitive dependencies |
| .github/workflows/update-dependencies.yml | Added dependency installation step, PATH configuration, and removed pnpx prefixes |
| .github/prompts/update-dependencies.md | Updated documentation to use bare agent-browser commands and clarified snapshot usage |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ab4c903
into
main
6 of 8 checks passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change updates the pnpm-workspace.yaml file to include 'agent-browser' in the onlyBuiltDependencies list. This ensures that the 'agent-browser' package is built alongside other specified dependencies, improving the consistency and reliability of the build process.
chore(turbo): update schema path in turbo.json
This modification changes the schema path in turbo.json from an external URL to a local path pointing to the installed turbo package. This adjustment enhances the reliability of the schema reference, ensuring that it is always accessible regardless of network conditions.