Skip to content

Commit 09e1f48

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

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
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:

e2e/fixtures/plugin-preview/index.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,9 @@ test.describe('plugin preview HMR', async () => {
224224
await fs.writeFile(HMR_TEST_FILE, updatedContent);
225225

226226
// Wait for HMR to apply
227-
await expect(internalCard).toContainText('HMR Internal Updated');
227+
await expect(internalCard).toContainText('HMR Internal Updated', {
228+
timeout: 30000,
229+
});
228230

229231
// Restore for next test
230232
await fs.writeFile(HMR_TEST_FILE, originalContent);

0 commit comments

Comments
 (0)