Skip to content

Commit

Permalink
Merge pull request #144 from MarcusT96/cypress-jonte
Browse files Browse the repository at this point in the history
fixes
  • Loading branch information
PontusPilatus authored May 15, 2024
2 parents e5afd2f + d577c99 commit 22f9bc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testDeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,19 @@ 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
run: nohup node index.js &
# 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:
Expand Down

0 comments on commit 22f9bc5

Please sign in to comment.