We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef73bc7 commit 15f03f2Copy full SHA for 15f03f2
2 files changed
.github/workflows/ci.yaml
@@ -35,11 +35,11 @@ jobs:
35
36
- name: Build API
37
working-directory: ./backend
38
- run: npm run build
+ run: npm run build-test
39
40
- name: Build Frontend
41
working-directory: ./frontend
42
43
44
deploy-api:
45
runs-on: self-hosted
backend/package.json
@@ -6,7 +6,8 @@
6
"dev": "nodemon --watch src --ext ts --exec ts-node ./server.ts",
7
"migrate": "npx drizzle-kit generate && npx drizzle-kit migrate",
8
"start": "nodemon --watch src --ext && ts-node server.ts --verbose",
9
- "build": "tsc --noemit"
+ "build": "ts-node server.ts --verbose"
10
+ "build-test": "tsc --noemit"
11
},
12
"browser": {
13
"fs": false,
0 commit comments