fix(create-video): Add macOS GitHub Actions path to git-status test #5559
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.
🐛 Bug Fix
Fixes the failing
create-video
test in GitHub Actions on macOS runners.mac-latest recent update to mac-15
📋 Problem
The
git-status.test.ts
test was failing in GitHub Actions after the migration frommacos-13
tomacos-14
runners. The test checks if the git repository location matches expected paths, but was missing the explicit GitHub Actions macOS path.Error:
🔍 Root Cause
macos-13
tomacos-14
runners (commitf2465c25bc
)D:/a/remotion/remotion
) but not for macOS GitHub Actionsmacos-14
runners🛠️ Solution
Added the explicit GitHub Actions macOS path (
/Users/runner/work/remotion/remotion
) to the test conditions:✅ Testing
5625f951e7
)📚 Context
This test has a history of needing platform-specific path fixes:
D:/a/remotion/remotion
)Follows the same approach as commit
5625f951e7
which added Windows GitHub Actions support.