Skip to content

Commit

Permalink
fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
loken156 committed May 15, 2024
1 parent 2c033d1 commit dbe6e3a
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,15 +24,15 @@ jobs:
node-version: '20'
# Install dependencies, build and start the server.
- name: Install dependencies
run: npm i
run: 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 i
run: cd ./cypress && npm install

- name: Run Cypress tests
# Change the directory to the cypress folder.
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
git pull
rm -r cypress
cd /var/www/MysteryIncAuctions/Client
npm i
npm install
rm -r dist
npm run build
cd /var/www/MysteryIncAuctions/Server
Expand Down

0 comments on commit dbe6e3a

Please sign in to comment.