File tree Expand file tree Collapse file tree 8 files changed +13
-54
lines changed Expand file tree Collapse file tree 8 files changed +13
-54
lines changed Original file line number Diff line number Diff line change @@ -30,23 +30,23 @@ jobs:
30
30
- uses : actions/checkout@v3
31
31
32
32
- name : Start Containers
33
- run : docker-compose -f "docker-compose.yml" up -d --build
33
+ run : docker-compose -f "/ksqljs/ docker-compose.yml" up -d --build
34
34
35
35
- name : Install node
36
36
uses : actions/setup-node@v1
37
37
with :
38
38
node-version : 16.x
39
39
40
40
- name : Install dependencies
41
- run : npm install
41
+ run : npm install --prefix "/ksqljs"
42
42
43
43
- name : Sleep for 30 seconds
44
44
run : sleep 30s
45
45
shell : bash
46
46
47
47
- name : Run tests
48
- run : npm run test
48
+ run : npm run test --prefix "/ksqljs"
49
49
50
50
- name : Stop containers
51
51
if : always()
52
- run : docker-compose -f "docker-compose.yml" down
52
+ run : docker-compose -f "/ksqljs/ docker-compose.yml" down
File renamed without changes.
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ require("@electron/remote/main").initialize();
4
4
5
5
function createWindow ( ) {
6
6
const win = new BrowserWindow ( {
7
- width : 800 ,
8
- height : 600 ,
7
+ width : 1600 ,
8
+ height : 1000 ,
9
9
webPreferences : {
10
10
enableRemoteModule : true ,
11
11
}
Original file line number Diff line number Diff line change 2
2
text-align : center;
3
3
}
4
4
5
- .App-logo {
6
- height : 40vmin ;
7
- pointer-events : none;
8
- }
9
-
10
- @media (prefers-reduced-motion : no-preference) {
11
- .App-logo {
12
- animation : App-logo-spin infinite 20s linear;
13
- }
14
- }
15
-
16
5
.App-header {
17
6
background-color : # 282c34 ;
18
7
min-height : 100vh ;
24
13
color : white;
25
14
}
26
15
27
- .App -link {
16
+ .github -link {
28
17
color : # 61dafb ;
29
- }
30
-
31
- @keyframes App-logo-spin {
32
- from {
33
- transform : rotate (0deg );
34
- }
35
- to {
36
- transform : rotate (360deg );
37
- }
38
- }
18
+ }
Original file line number Diff line number Diff line change 1
- import logo from './logo.svg' ;
1
+
2
2
import './App.css' ;
3
3
4
4
function App ( ) {
5
5
return (
6
6
< div className = "App" >
7
7
< header className = "App-header" >
8
- < img src = { logo } className = "App-logo" alt = "logo" />
9
8
< p >
10
9
Edit < code > src/App.js</ code > and save to reload.
11
10
</ p >
12
11
< a
13
- className = "App -link"
14
- href = "https://reactjs.org "
12
+ className = "github -link"
13
+ href = "https://github.com/oslabs-beta/ksqljs/ "
15
14
target = "_blank"
16
15
rel = "noopener noreferrer"
17
16
>
18
- Learn React
17
+ Check our Github!
19
18
</ a >
20
19
</ header >
21
20
</ div >
Original file line number Diff line number Diff line change @@ -2,16 +2,10 @@ import React from 'react';
2
2
import ReactDOM from 'react-dom/client' ;
3
3
import './index.css' ;
4
4
import App from './App' ;
5
- import reportWebVitals from './reportWebVitals' ;
6
5
7
6
const root = ReactDOM . createRoot ( document . getElementById ( 'root' ) ) ;
8
7
root . render (
9
8
< React . StrictMode >
10
9
< App />
11
10
</ React . StrictMode >
12
- ) ;
13
-
14
- // If you want to start measuring performance in your app, pass a function
15
- // to log results (for example: reportWebVitals(console.log))
16
- // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17
- reportWebVitals ( ) ;
11
+ ) ;
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments