Skip to content

Commit 15f03f2

Browse files
committed
fix: change ci
1 parent ef73bc7 commit 15f03f2

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
3636
- name: Build API
3737
working-directory: ./backend
38-
run: npm run build
38+
run: npm run build-test
3939

4040
- name: Build Frontend
4141
working-directory: ./frontend
42-
run: npm run build
42+
run: npm run build-test
4343

4444
deploy-api:
4545
runs-on: self-hosted

backend/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"dev": "nodemon --watch src --ext ts --exec ts-node ./server.ts",
77
"migrate": "npx drizzle-kit generate && npx drizzle-kit migrate",
88
"start": "nodemon --watch src --ext && ts-node server.ts --verbose",
9-
"build": "tsc --noemit"
9+
"build": "ts-node server.ts --verbose"
10+
"build-test": "tsc --noemit"
1011
},
1112
"browser": {
1213
"fs": false,

0 commit comments

Comments
 (0)