Skip to content

Commit e8d45d7

Browse files
authored
fix: build fail (#63)
1 parent cb2120e commit e8d45d7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { Global } from "@emotion/react";
22
import CssBaseline from "@mui/material/CssBaseline";
3+
import React from "react";
34

45
const styles = {};
56

67
export const GlobalStyles = () => (
7-
<>
8+
<React.Fragment>
89
<CssBaseline />
910
<Global styles={styles} />
10-
</>
11+
</React.Fragment>
1112
);

etc/runner/src/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ func (m *Runner) Test(ctx context.Context) (string, error) {
8686
func (m *Runner) Build(ctx context.Context) *dagger.Directory {
8787
return m.
8888
MoonRun(ctx, "scripts:build").
89-
Directory("/mnt/app/public")
89+
Directory("/mnt/apps/app/public")
9090
}
9191

9292
func (m *Runner) Publish(ctx context.Context) (string, error) {

etc/scripts/pipelines/validate-pr.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,5 @@ await cleanBuild();
88
cd(workDirs.etc.runner.path);
99

1010
await $`dagger call --dir ${workDirs.path} test`;
11+
12+
await $`dagger call --dir ${workDirs.path} build`;

0 commit comments

Comments
 (0)