diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 7876a03..e6176dc 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -111,10 +111,24 @@ jobs: - name: Install LK CLI run: | curl -sSL https://get.livekit.io/cli | bash - - name: Run tests + - name: Setup OpenVidu Meet run: | ./prepare.sh cd backend npm install + npm run start:prod & + - name: Run tests + run: | + cd backend npm run test:integration-recordings + env: + JEST_JUNIT_OUTPUT_DIR: './reports/' + - name: Publish Test Report + uses: mikepenz/action-junit-report@v4 + if: always() + with: + report_paths: '**/reports/junit.xml' + fail_on_failure: true + require_tests: true +