Skip to content

Commit 104c8de

Browse files
committed
modify action
1 parent fda8d90 commit 104c8de

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

Diff for: .github/workflows/build.yml

+12-13
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,23 @@ jobs:
2727
lint: false
2828
- name: Install dependencies
2929
run: npm install
30-
- name: Install server dependencies
31-
run: |
32-
cd demo
33-
npm install
30+
- name: Install demo
31+
run: npm run setup_demo
3432
- name: Build lean4monaco
3533
run: npm run build
36-
- name: Build demo server
37-
run: |
38-
cd demo
39-
npm run build
34+
# - name: Build demo server
35+
# run: |
36+
# cd demo
37+
# npm run build
4038
- name: Start server
4139
id: start-server
4240
run: |
43-
cd demo
44-
echo "Starting server..."
45-
npm run start
46-
# nohup npm run start > nohup.out 2> nohup.err < /dev/null &
47-
echo "server is running."
41+
npm start
42+
# cd demo
43+
# echo "Starting server..."
44+
# npm run start
45+
# # nohup npm run start > nohup.out 2> nohup.err < /dev/null &
46+
# echo "server is running."
4847
test:
4948
strategy:
5049
fail-fast: false

0 commit comments

Comments
 (0)