mirror of https://github.com/OpenVidu/openvidu.git
57 lines
1.5 KiB
YAML
57 lines
1.5 KiB
YAML
name: OpenVidu integration tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "openvidu-test-integration/**"
|
|
- ".github/workflows/openvidu-integration-tests.yml"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
integration-tests:
|
|
name: Integration tests
|
|
timeout-minutes: 30
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Configure OpenVidu Local Deployment
|
|
uses: OpenVidu/actions/start-openvidu-local-deployment@main
|
|
with:
|
|
ref-openvidu-local-deployment: development
|
|
pre_startup_commands: |
|
|
sed -i 's/interval: 10s/interval: 1s/' livekit.yaml
|
|
sed -i '/interval: 1s/a \ fixer_interval: 10s' livekit.yaml
|
|
- name: Install LiveKit CLI
|
|
run: |
|
|
curl -sSL https://get.livekit.io/cli | bash
|
|
|
|
- name: Checkout current repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: openvidu
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
|
|
- name: Install dependencies
|
|
working-directory: ./openvidu/openvidu-test-integration
|
|
run: npm ci
|
|
|
|
- name: Run tests
|
|
working-directory: ./openvidu/openvidu-test-integration
|
|
run: npm run test:ci
|
|
|
|
- name: Upload report
|
|
uses: actions/upload-artifact@v4
|
|
if: always()
|
|
with:
|
|
name: openvidu-integration-tests-report
|
|
path: ./openvidu/openvidu-test-integration/test-results.json
|
|
retention-days: 7
|
|
- name: Cleanup
|
|
if: always()
|
|
uses: OpenVidu/actions/cleanup@main
|
|
|