Bump @vscode/test-electron to ^3.1.0 to fix macOS CI - #288
Merged
rzhao271 merged 1 commit intoJul 27, 2026
Merged
Conversation
Copilot
AI
changed the title
Bump @vscode/test-electron to ^3.1.0 to fix macOS CI failure
Bump @vscode/test-electron to ^3.1.0 to fix macOS CI
Jul 27, 2026
Copilot created this pull request from a session on behalf of
rzhao271
July 27, 2026 22:34
View session
rzhao271
approved these changes
Jul 27, 2026
rzhao271
marked this pull request as ready for review
July 27, 2026 22:44
rzhao271
merged commit Jul 27, 2026
3a08b71
into
copilot/migrate-ci-pipelines-to-github-actions
8 of 10 checks passed
rzhao271
pushed a commit
that referenced
this pull request
Jul 28, 2026
* chore: add GitHub Actions CI workflow * chore: pin actions to latest semver, add persist-credentials false and permissions empty * Bump @vscode/test-electron to ^3.1.0 to fix macOS CI (#288) Bump @vscode/test-electron to ^3.1.0 to fix macOS CI failure Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
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.
The macOS CI job was failing with
ENOENTwhen@vscode/test-electronv2.5.2 tried to spawn the Electron binary after downloading VS Code Insiders ondarwin-arm64— the extracted path no longer matched what the library expected.Changes
package.json:@vscode/test-electron^2.5.2→^3.1.0package-lock.json: updated lockfile accordinglyv3.x fixes binary path resolution for macOS arm64. The
runTestsAPI is unchanged; no call-site modifications required.