We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dae1d11 commit fda8d90Copy full SHA for fda8d90
.github/workflows/build.yml
@@ -29,20 +29,21 @@ jobs:
29
run: npm install
30
- name: Install server dependencies
31
run: |
32
- cd demo/server
+ cd demo
33
npm install
34
- name: Build lean4monaco
35
run: npm run build
36
- name: Build demo server
37
38
39
npm run build
40
- name: Start server
41
id: start-server
42
43
44
echo "Starting server..."
45
- nohup npm run start > nohup.out 2> nohup.err < /dev/null &
+ npm run start
46
+ # nohup npm run start > nohup.out 2> nohup.err < /dev/null &
47
echo "server is running."
48
test:
49
strategy:
0 commit comments