Skip to content

Commit e794179

Browse files
committed
Fixed tests
1 parent d206a8b commit e794179

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/1maxPadPerInstance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
run: cat settings.json
9090

9191
- name: Start proxy
92-
run: node app.js > proxyLog.txt &
92+
run: pnpm run start > proxyLog.txt &
9393

9494
- name: Install etherpad-load-test
9595
run: pnpm install etherpad-load-test -g

.github/workflows/3maxPadPerInstance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: cd test1/src && pnpm i
5050

5151
- name: start etherpad >> test1
52-
run: cd test1 && node src/node/server.js &
52+
run: cd test1 && pnpm run prod &
5353

5454
- name: Git clone etherpad to test2
5555
uses: actions/checkout@v3
@@ -65,7 +65,7 @@ jobs:
6565
run: cd test2/src && pnpm i
6666

6767
- name: start etherpad >> test2
68-
run: cd test2 && node src/node/server.js &
68+
run: cd test2 && pnpm run prod &
6969

7070
- name: Git clone etherpad to test3
7171
uses: actions/checkout@v3

.github/workflows/rapidUniqueness.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: cd test1/src && pnpm i --no-optional
5050

5151
- name: start etherpad >> test1
52-
run: cd test1 && node src/node/server.js &
52+
run: cd test1 && pnpm run prod &
5353

5454
- name: Git clone etherpad to test2
5555
uses: actions/checkout@v3
@@ -65,7 +65,7 @@ jobs:
6565
run: cd test2/src && pnpm i --no-optional
6666

6767
- name: start etherpad >> test2
68-
run: cd test2 && node src/node/server.js &
68+
run: cd test2 && pnpm run prod &
6969

7070
- name: Git clone etherpad to test3
7171
uses: actions/checkout@v3
@@ -81,7 +81,7 @@ jobs:
8181
run: cd test3/src && pnpm i --no-optional
8282

8383
- name: start etherpad >> test3
84-
run: cd test3 && node src/node/server.js &
84+
run: cd test3 && pnpm run prod &
8585

8686
- name: support 1 pad per instances
8787
run: sed 's/5/1/g' settings.json.template > settings.json
@@ -90,7 +90,7 @@ jobs:
9090
run: cat settings.json
9191

9292
- name: Start proxy
93-
run: node app.js > proxyLog.txt &
93+
run: pnpm run start > proxyLog.txt &
9494

9595
- name: Install etherpad-load-test
9696
run: pnpm install etherpad-load-test -g

0 commit comments

Comments
 (0)