feat: add chrome extension #9
This file contains 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 staging migrations | |
on: [pull_request] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
- name: Apply all pending migrations to the staging database | |
run: npx prisma migrate deploy | |
working-directory: ./apps/web | |
env: | |
DATABASE_URL: ${{ secrets.DATABASE_URL_STAGING }} | |
DIRECT_URL: ${{ secrets.DIRECT_URL_STAGING }} |