Skip to content

Commit

Permalink
Merge pull request #84 from ClaudioMartinH/83-move-workflows-to-root-…
Browse files Browse the repository at this point in the history
…folder-and-create-package-lockjson

github folder moved, created npm's package.json and package-lock.json…
  • Loading branch information
ClaudioMartinH authored Sep 10, 2024
2 parents a40048e + 552d57d commit ae7aa77
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ jobs:
cache: "npm"

- name: Install dependencies
run: npm install
run: cd server && npm install
run: cd client && npm install

- name: Build
run: npm run build
run: cd server && npm run build
run: cd client && npm run build

- name: Run tests
run: npm test
run: cd server && npm test
14 changes: 14 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "6-claudio-martin-andrea-rethy",
"version": "1.0.0",
"description": "��",
"main": "index.js",
"scripts": {
"install:frontend": "cd client && npm install",
"install:backend": "cd server && npm install",
"install": "npm run install:frontend && npm run install:backend",
"build:frontend": "cd client && npm run build",
"build:backend": "cd server && npm run build",
"start:frontend": "cd client && npm start",
"start:backend": "cd server && npm start",
"start:dev": "concurrently \"npm:start:frontend\" \"npm:start:backend\""
},
"keywords": [],
"author": "Andrea Rethy & Claudio Martin",
"license": "ISC"
}
4 changes: 2 additions & 2 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ae7aa77

Please sign in to comment.