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: 16 additions & 0 deletions .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,22 @@ 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 apps/web/src/app/(app)/browse/[courseId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export default async function CourseDetailPage({
</p>
</div>
{actionLabel ? (
<div className="inline-flex items-center gap-1 self-start text-sm font-medium text-primary">
<div className="inline-flex items-center gap-1 self-start shrink-0 whitespace-nowrap text-sm font-medium text-primary">
<span>{actionLabel}</span>
<ArrowRight className="h-4 w-4" />
</div>
Expand Down
Loading