There was an error while loading. Please reload this page.
1 parent c5f21ee commit dbb8978Copy full SHA for dbb8978
2 files changed
.github/workflows/ci.yml
@@ -89,7 +89,7 @@ jobs:
89
wait-on: 'http://localhost:3000'
90
wait-on-timeout: 120
91
command: npm run cypress:run
92
-
+
93
- name: Smoke test build
94
run: ./scripts/package-smoke-test.sh --no-clean-build
95
src/service/index.ts
@@ -182,7 +182,9 @@ async function createApp(proxy: Proxy): Promise<Express> {
182
});
183
184
if (!fs.existsSync(path.join(absBuildPath, 'index.html'))) {
185
- console.error(`UI build not found at ${absBuildPath}. The package may have been built or published incorrectly`);
+ console.error(
186
+ `UI build not found at ${absBuildPath}. The package may have been built or published incorrectly`,
187
+ );
188
}
189
return app;
190
0 commit comments