Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTV12345 committed Nov 28, 2024
1 parent d206a8b commit e794179
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/1maxPadPerInstance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
run: cat settings.json

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

- name: Install etherpad-load-test
run: pnpm install etherpad-load-test -g
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/3maxPadPerInstance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: cd test1/src && pnpm i

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

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

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

- name: Git clone etherpad to test3
uses: actions/checkout@v3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rapidUniqueness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: cd test1/src && pnpm i --no-optional

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

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

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

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

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

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

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

- name: Install etherpad-load-test
run: pnpm install etherpad-load-test -g
Expand Down

0 comments on commit e794179

Please # to comment.