Skip to content

Commit

Permalink
install dependencies in
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmailJniah committed Apr 23, 2024
1 parent 2cfb5b8 commit 36a111b
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-getaroom-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
sudo npm install --location=global http-server
http-server openvidu-getaroom/web > results/logs/client_application.log 2>&1 &
sleep 5
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-iframe-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
sleep 10
sudo http-server openvidu-iframe/web > results/logs/http_server_iframe.log 2>&1 &
- name: Install Playwright Browsers
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
sleep 5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-js-screen-share-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ jobs:
sudo npm install --location=global http-server
sudo http-server openvidu-js-screen-share/web > results/logs/client_application.log 2>&1 &
- name: Install Playwright Browsers
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
sleep 5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-js-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ jobs:
sudo npm install --location=global http-server
sudo http-server openvidu-js/web > results/logs/client_application.log 2>&1 &
- name: Install Playwright Browsers
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
sleep 5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-react-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ jobs:
npm install
npm start > ../results/logs/client_application.log 2>&1 &
- name: Install Playwright Browsers
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
sleep 5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-recording-java-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ jobs:

- name: Install Playwright Browsers
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
sleep 5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-recording-node-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ jobs:
sudo node server.js http://localhost:4443 MY_SECRET > ../results/logs/server_client_application.log 2>&1 &
sleep 10
- name: Install Playwright Browsers
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
sleep 5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/openvidu-vue-tutorial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ jobs:
npm install
npm run serve > ../results/logs/client_application.log 2>&1 &
- name: Install Playwright Browsers
- name: Install dependencies
run: npm ci

- name: Install Playwright Browsers
run: |
npx playwright install chromium
sleep 5
Expand Down

0 comments on commit 36a111b

Please sign in to comment.