forked from codeurjc-students/openvidu-tutorials-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (45 loc) · 1.54 KB
/
openvidu-angular-tutorial.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: openvidu-angular-tutorial
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Run OpenVidu deployment
run: |
docker run -p 4443:4443 --rm -e OPENVIDU_SECRET=MY_SECRET openvidu/openvidu-dev:2.29.0 > results/logs/docker.log 2>&1 &
sleep 10
- name: Run server application sample
working-directory: openvidu-basic-node
run: |
npm install
node index.js > ../results/logs/server_application.log 2>&1 &
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 16
- name: Install Angular CLI
run: npm install -g @angular/cli
- name: Levantar la aplicación cliente
working-directory: openvidu-angular
run: |
npm install
npx ng serve > ../results/logs/client_application.log 2>&1 &
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install
- name: Install playwright-test
run: npm install @playwright/test
- name: Runing Test
working-directory: Tests/TutorialTests
run: |
npx playwright test openvidu-angular-web-tutorial.spec.js
- uses: actions/upload-artifact@v4
if: always()
with:
name: results-angular
path: /home/runner/work/openvidu-tutorials-tests-playwright/openvidu-tutorials-tests-playwright/results/
retention-days: 30