From b87fa1a511465a09ea74303a17849ead6dcfa00b Mon Sep 17 00:00:00 2001 From: Alejandro Lembke Barrientos Date: Tue, 13 Feb 2024 21:24:08 +0000 Subject: [PATCH] =?UTF-8?q?PR-387478:=20A=C3=B1adir=20comandos=20para=20in?= =?UTF-8?q?stalar=20dependencias=20en=20el=20flujo=20de=20trabajo=20princi?= =?UTF-8?q?pal?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main-workflow.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/main-workflow.yml b/.github/workflows/main-workflow.yml index 21bb4fc..d7772db 100644 --- a/.github/workflows/main-workflow.yml +++ b/.github/workflows/main-workflow.yml @@ -37,6 +37,8 @@ jobs: uses: actions/checkout@v3 # Install NPM dependencies, cache them correctly # and run all Cypress tests + - name: Install dependencies + run: npm ci --legacy-peer-deps - name: Cypress run uses: cypress-io/github-action@v5 # use the explicit version number with: @@ -52,6 +54,8 @@ jobs: uses: actions/checkout@v3 # Install NPM dependencies, cache them correctly # and run all Cypress tests + - name: Install dependencies + run: npm ci --legacy-peer-deps - name: Cypress run uses: cypress-io/github-action@v5 # use the explicit version number with: