This repository was archived by the owner on May 20, 2025. It is now read-only.
add go guide for real time chat and a guide to use terratest with the… #122
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: Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Apply all pending migrations to the database | |
| run: npx prisma migrate deploy | |
| env: | |
| POSTGRES_PRISMA_URL: ${{ secrets.POSTGRES_PRISMA_URL }} | |
| POSTGRES_URL_NON_POOLING: ${{ secrets.POSTGRES_URL_NON_POOLING }} |