Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:

jobs:
release:
runs-on: ubuntu-22.04
runs-on: windows-latest

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Make the smoke-test paths Windows-aware

On windows-latest, the pack smoke-test will fail before the Changesets publish step: npm install --global --prefix "$install_root" places executable links directly in the prefix on Windows, while lines 56–58 invoke them from the Unix-only $install_root/bin directory. The npm folders documentation explicitly states that global executables are linked “directly into {prefix} on Windows.” Keep a Unix runner or select the Windows shim paths when running this job on Windows.

Useful? React with 👍 / 👎.

timeout-minutes: 15
steps:
- name: Check out the repository
Expand Down
Loading