Skip to content

Commit fda8d90

Browse files
committed
modify action
1 parent dae1d11 commit fda8d90

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Diff for: .github/workflows/build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -29,20 +29,21 @@ jobs:
2929
run: npm install
3030
- name: Install server dependencies
3131
run: |
32-
cd demo/server
32+
cd demo
3333
npm install
3434
- name: Build lean4monaco
3535
run: npm run build
3636
- name: Build demo server
3737
run: |
38-
cd demo/server
38+
cd demo
3939
npm run build
4040
- name: Start server
4141
id: start-server
4242
run: |
43-
cd demo/server
43+
cd demo
4444
echo "Starting server..."
45-
nohup npm run start > nohup.out 2> nohup.err < /dev/null &
45+
npm run start
46+
# nohup npm run start > nohup.out 2> nohup.err < /dev/null &
4647
echo "server is running."
4748
test:
4849
strategy:

0 commit comments

Comments
 (0)