Skip to content

Commit

Permalink
Changes to be committed:
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailJniah committed Apr 23, 2024
1 parent 14b2f6e commit e17fb62
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/openvidu-angular-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: '18.13'
node-version: '16'

- name: Install Angular CLI
run: npm install -g @angular/cli
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/openvidu-getaroom-tutorial.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: openvidu-getaroom-tutorial-test
name: nombre_del_tutorial

on:

push:


Expand All @@ -21,13 +20,13 @@ jobs:
working-directory: openvidu-basic-node
run: |
npm install
node index.js > ../results/logs/nodeindex_log.txt 2>&1 &
node index.js > ../results/logs/server_aplication.log 2>&1 &
sleep 5
- name: Run the client application tutorial
run: |
sudo npm install --location=global http-server
http-server openvidu-getaroom/web > results/logs/http_server_log.txt 2>&1 &
http-server openvidu-getaroom/web > results/logs/client_aplication.log 2>&1 &
sleep 5
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openvidu-react-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
working-directory: openvidu-react
run: |
npm install
npm start > results/logs/client_aplication.log 2>&1 &
npm start > ../results/logs/client_aplication.log 2>&1 &
- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/openvidu-recording-java-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
java-version: '11'


- name: Run server application sample
- name: Run server and client application sample
working-directory: openvidu-recording-java
run: |
mvn package exec:java > ../results/logs/server_aplication.log 2>&1 &
mvn package exec:java > ../results/logs/server_client_aplication.log 2>&1 &
sleep 10
- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/openvidu-recording-node-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ jobs:
- uses: actions/[email protected]

- name: Ejecutar la aplicación del servidor
- name: Ejecutar la aplicación del servidor y de cliente
run: |
cd openvidu-recording-node
sudo npm install
sudo node server.js http://localhost:4443 MY_SECRET > ../results/logs/server_aplication.log 2>&1 &
sudo node server.js http://localhost:4443 MY_SECRET > ../results/logs/server_client_aplication.log 2>&1 &
sleep 10
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion tests/openvidu-recording-node-tutorial.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test('Checking for the presence of two active webcams in an OpenVidu session', a

try {
// Navigate to a specific URL on the first page.
await page1.goto('http://localhost:5000');
await page1.goto('https://localhost:5000');

// Perform actions on the first page.
await page1.click('button.btn-success');
Expand Down

0 comments on commit e17fb62

Please sign in to comment.