fix: enable nodeMiddleware in Next.js configuration for app and trust #4
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Database Migrations Dev | |
| on: | |
| push: | |
| branches: | |
| - '**' # any branch | |
| workflow_dispatch: # Allows manual triggering | |
| env: | |
| BUN_VERSION: "1.0.26" | |
| jobs: | |
| migrate: | |
| name: Run Database Migrations | |
| runs-on: ubuntu-latest-custom | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: ${{ env.BUN_VERSION }} | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Apply database migrations | |
| env: | |
| DATABASE_URL: ${{ secrets.DATABASE_URL_DEV }} | |
| run: | | |
| cd packages/db | |
| bunx prisma migrate deploy |