Skip to content

Commit 2d231d3

Browse files
committed
Change OS from macOS to Ubuntu in workflow
1 parent 992b4dc commit 2d231d3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/test-macOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
node-version: [22.x]
26-
os: [macos-14] # M1 Mac
26+
os: [ubuntu-latest] # M1 Mac
2727

2828
# Steps represent a sequence of tasks that will be executed as part of the job
2929
steps:

packages/core/src/node/initRsbuild.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -342,11 +342,11 @@ async function createInternalBuildConfig(
342342
})
343343
.end();
344344

345-
chain.experiments({
346-
// Enable native watcher by default unless RSPRESS_NATIVE_WATCHER is set to 'false'
347-
...chain.get('experiments'),
348-
nativeWatcher: process.env.RSPRESS_NATIVE_WATCHER !== 'false',
349-
});
345+
// chain.experiments({
346+
// // Enable native watcher by default unless RSPRESS_NATIVE_WATCHER is set to 'false'
347+
// ...chain.get('experiments'),
348+
// nativeWatcher: process.env.RSPRESS_NATIVE_WATCHER !== 'false',
349+
// });
350350

351351
if (chain.plugins.has(CHAIN_ID.PLUGIN.REACT_FAST_REFRESH)) {
352352
chain.plugin(CHAIN_ID.PLUGIN.REACT_FAST_REFRESH).tap(options => {

0 commit comments

Comments
 (0)