From 221b19677c9903df89122ddc572d8925f9094ab8 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Wed, 23 Apr 2025 14:17:07 +0200 Subject: [PATCH] ci: Add yarn setup step and correct Recording API Tests name in integration workflow --- .github/workflows/integration-test.yaml | 26 +++++-------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 1ec4896..b1f58e6 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -49,6 +49,8 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' + - name: Setup yarn + run: npm install -g yarn - name: Run tests run: | ./prepare.sh @@ -57,7 +59,7 @@ jobs: npm run test:integration-rooms test-recordings: - name: Recording API Tests + name: Recordings API Tests runs-on: ov-actions-runner steps: - name: Checkout OpenVidu Local Deployment @@ -95,6 +97,8 @@ jobs: uses: actions/setup-node@v4 with: node-version: '20' + - name: Setup yarn + run: npm install -g yarn - name: Run tests run: | ./prepare.sh @@ -102,23 +106,3 @@ jobs: npm install npm run test:integration-recordings -# openvidu_webhook_tests: -# name: OpenVidu Webhooks -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v4 -# with: -# ref: next -# path: openvidu-meet - -# - uses: actions/setup-node@v4 -# with: -# node-version: '20' - -# - name: Run openvidu-meet backend -# run: | -# cd openvidu-meet -# ./prepare.sh -# cd backend -# npm install -# npm run test:integration-webhooks