Skip to content

Commit

Permalink
Deploy test
Browse files Browse the repository at this point in the history
  • Loading branch information
basshamut committed Jun 24, 2024
1 parent bc20af6 commit d73d87a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,15 @@ jobs:

- name: Install dependencies for frontend
run: |
cd frontend
npm install
npm run install:frontend
- name: Build frontend
run: |
npm run build:frontend
- name: Install dependencies for backend
run: |
npm install:backend
npm run install:backend
- name: Install sshpass
run: sudo apt-get install -y sshpass
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"private": true,
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"build:frontend": "cd frontend && npm install && npm run build",
"install:frontend": "cd frontend && npm install",
"build:frontend": "cd frontend && npm run build",
"dev:frontend": "cd frontend && npm install && npm run dev",
"dev:backend": "cd backend && npm install && npm run dev",
"install:backend": "cd backend && npm install"
Expand Down

0 comments on commit d73d87a

Please sign in to comment.