Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,22 +188,6 @@ jobs:
steps:
- uses: actions/checkout@v5

- uses: oven-sh/setup-bun@v2
with:
bun-version: "1.3.6"

- name: Install dependencies
run: bun install

- name: Generate Prisma client
run: cd backend && bun x prisma generate

- name: Run production migrations
run: cd backend && bun x prisma migrate deploy
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}
DIRECT_URL: ${{ secrets.DIRECT_URL }}

- name: Install Railway CLI
run: npm install -g @railway/cli

Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build": "prisma generate && nest build",
"dev": "bun x nest build && bun x nest start --watch",
"start": "nest start",
"start:prod": "TS_NODE_PROJECT=tsconfig.runtime.json node -r tsconfig-paths/register dist/main.js",
"start:prod": "prisma migrate deploy && TS_NODE_PROJECT=tsconfig.runtime.json node -r tsconfig-paths/register dist/main.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --config eslint.config.mjs \"{src,prisma}/**/*.ts\" --fix"
Expand Down
Loading