From 37a3fda046db3d70d0e1b64f83447e37920c0917 Mon Sep 17 00:00:00 2001 From: Matias Poblete <86752543+MattPoblete@users.noreply.github.com> Date: Tue, 10 Sep 2024 12:52:27 -0300 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8FMoved=20cypress=20install=20t?= =?UTF-8?q?o=20test=20job?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/run-tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0bd8c5b3..95a68855 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,6 @@ jobs: with: path: | node_modules - .cache/Cypress key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} @@ -29,9 +28,6 @@ jobs: - name: Install dependencies run: yarn install - - name: Install cypress - run: yarn cypress install --force - - name: Build app run: yarn build @@ -52,7 +48,6 @@ jobs: with: path: | node_modules - .cache/Cypress key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} @@ -73,7 +68,6 @@ jobs: with: path: | node_modules - .cache/Cypress key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }} @@ -82,6 +76,9 @@ jobs: uses: actions/setup-node@v4.0.2 with: node-version: '20.10.0' + + - name: Install cypress + run: yarn cypress install --force - name: Run test run: yarn cy:run \ No newline at end of file