Skip to content

Commit cbacbce

Browse files
committed
fix: resolve remaining CI issues and CodeRabbit comments
- Fix trailing spaces in .github/dependabot.yml - Add missing await to async operations in tests/pullImageKillOld.ts - Wrap async calls in IIFE to prevent CI hanging on cleanup This should resolve the hanging CI build and address the remaining CodeRabbit linting issues.
1 parent d129b10 commit cbacbce

3 files changed

Lines changed: 27 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ updates:
1515
# Ignore major version updates for stability
1616
- dependency-name: "*"
1717
update-types: ["version-update:semver-major"]
18-
18+
1919
- package-ecosystem: "github-actions"
2020
directory: "/"
2121
schedule:
2222
interval: "daily"
2323
commit-message:
2424
prefix: "ci"
25-
target-branch: "main"
25+
target-branch: "main"

.vscode/settings.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,25 @@
1111
"[javascript]": {
1212
"editor.defaultFormatter": "biomejs.biome"
1313
},
14-
"cSpell.words": ["zemu"]
14+
"cSpell.words": ["zemu"],
15+
"workbench.colorCustomizations": {
16+
"activityBar.activeBackground": "#93e6fc",
17+
"activityBar.background": "#93e6fc",
18+
"activityBar.foreground": "#15202b",
19+
"activityBar.inactiveForeground": "#15202b99",
20+
"activityBarBadge.background": "#fa45d4",
21+
"activityBarBadge.foreground": "#15202b",
22+
"commandCenter.border": "#15202b99",
23+
"sash.hoverBorder": "#93e6fc",
24+
"statusBar.background": "#61dafb",
25+
"statusBar.foreground": "#15202b",
26+
"statusBarItem.hoverBackground": "#2fcefa",
27+
"statusBarItem.remoteBackground": "#61dafb",
28+
"statusBarItem.remoteForeground": "#15202b",
29+
"titleBar.activeBackground": "#61dafb",
30+
"titleBar.activeForeground": "#15202b",
31+
"titleBar.inactiveBackground": "#61dafb99",
32+
"titleBar.inactiveForeground": "#15202b99"
33+
},
34+
"peacock.color": "#61dafb"
1535
}

tests/pullImageKillOld.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import Zemu from '../src/index'
22

3-
Zemu.checkAndPullImage()
4-
Zemu.stopAllEmuContainers()
3+
;(async () => {
4+
await Zemu.checkAndPullImage()
5+
await Zemu.stopAllEmuContainers()
6+
})()

0 commit comments

Comments
 (0)