From d577c995728aa0ed20771d29975df2741bf341b2 Mon Sep 17 00:00:00 2001 From: loken156 Date: Wed, 15 May 2024 14:13:23 +0200 Subject: [PATCH] fixes --- .github/workflows/testDeploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testDeploy.yml b/.github/workflows/testDeploy.yml index 7e6d01d..a15b7d1 100644 --- a/.github/workflows/testDeploy.yml +++ b/.github/workflows/testDeploy.yml @@ -24,7 +24,7 @@ jobs: node-version: '20' # Install dependencies, build and start the server. - name: Install dependencies - run: npm install + run: cd ./Client && npm install - name: Build run: npm run build - name: Start server @@ -32,11 +32,11 @@ jobs: # Install Cypress dependencies and run the tests. - name: Install Cypress Dependencies # Change the directory to the cypress folder. - run: cd ./cypress && npm install + run: cd ./Cypress && npm install - name: Run Cypress tests # Change the directory to the cypress folder. - run: cd ./cypress && npm run test + run: cd ./Cypress && npm run test # The deploy job will run on the ubuntu-latest runner and will have the following steps. deploy: