Skip to content

Commit 9f974ea

Browse files
authored
Merge pull request #79 from ConducereIT/cristi3
main.yamal changes
2 parents f1ae269 + 62860e1 commit 9f974ea

File tree

5 files changed

+74
-1
lines changed

5 files changed

+74
-1
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,18 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212
- uses: actions/setup-node@v4
13+
with:
14+
node-version: '18'
1315
- uses: Genez-io/genezio-github-action@v3
1416
with:
1517
token: ${{ secrets.GENEZIO_TOKEN }}
1618
- name: Install patched Genezio CLI
1719
run: npm install -g genezio@3.2.10
1820
- name: install pg
1921
working-directory: ./server
20-
run: npm install pg
22+
run: |
23+
npm ci
24+
npm install @genezio/types pg
2125
- name: Deploy backend
2226
working-directory: ./server
2327
run: genezio deploy --logLevel debug

package-lock.json

Lines changed: 37 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"dependencies": {
3+
"@genezio/types": "^1.0.20"
4+
}
5+
}

server/package-lock.json

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"author": "",
1111
"license": "ISC",
1212
"dependencies": {
13+
"@genezio/types": "^1.0.20",
1314
"bcryptjs": "^2.4.3",
1415
"dotenv": "^16.0.3",
1516
"jsonwebtoken": "^8.5.1",

0 commit comments

Comments
 (0)