feat(deploy): add Vercel auto-deploy workflows and update guide #64
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: CI | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| version: 10.0.0 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Generate Prisma client | |
| run: pnpm db:generate | |
| - name: Create .env file | |
| run: cp .env.example .env | |
| - name: Lint | |
| run: pnpm lint | |
| env: | |
| DATABASE_URL: 'postgresql://ci:ci@localhost:5432/captar_ci' | |
| AUTH_SECRET: 'ci-test-secret-not-for-production' | |
| AUTH_URL: 'http://localhost:3000' | |
| - name: Test | |
| run: pnpm test |