From f728dd848a89236815ece8c55ec5be94d19e6233 Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Mon, 21 Nov 2022 14:27:07 +0100 Subject: [PATCH] Fix openvidu-e2e-tests for NPM 18 with NODE_OPTIONS=--openssl-legacy-provider --- ci-scripts/openvidu-e2e-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-scripts/openvidu-e2e-tests.sh b/ci-scripts/openvidu-e2e-tests.sh index c328968c..f4e60036 100755 --- a/ci-scripts/openvidu-e2e-tests.sh +++ b/ci-scripts/openvidu-e2e-tests.sh @@ -354,7 +354,7 @@ if [[ "${BUILD_OV_TESTAPP}" == true || "${EXECUTE_ALL}" == true ]]; then pushd openvidu-testapp npm install --legacy-peer-deps npm link --legacy-peer-deps openvidu-browser openvidu-node-client - export NG_CLI_ANALYTICS="false" && ./node_modules/@angular/cli/bin/ng build --prod --output-path=/opt/openvidu/testapp + export NG_CLI_ANALYTICS="false" && export NODE_OPTIONS=--openssl-legacy-provider && ./node_modules/@angular/cli/bin/ng build --prod --output-path=/opt/openvidu/testapp popd fi