Feat/migrate to pnpn #347
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: E2E Tests | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| branches: | |
| - develop | |
| # Cancel old builds on new commit for same workflow + branch/PR | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| initial-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "lts/*" | |
| cache: "pnpm" | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - name: Install dependencies | |
| run: pnpm install | |
| e2e: | |
| needs: initial-checks | |
| runs-on: ubuntu-latest | |
| environment: production | |
| env: | |
| DATABASE_URL: "postgresql://postgres:secret@localhost:5432/postgres" | |
| NEXTAUTH_URL: http://localhost:3000/api/auth | |
| GITHUB_ID: ${{ secrets.E2E_GITHUB_ID }} | |
| GITHUB_SECRET: ${{ secrets.E2E_GITHUB_SECRET }} | |
| NEXTAUTH_SECRET: ${{ secrets.NEXTAUTH_SECRET }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| fetch-depth: 0 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "lts/*" | |
| cache: "pnpm" | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - name: Cache Playwright browsers | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.cache/ms-playwright | |
| key: ${{ runner.os }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-playwright- | |
| - name: Run docker-compose | |
| uses: isbang/[email protected] | |
| with: | |
| compose-file: "./docker-compose.yml" | |
| down-flags: "--volumes" | |
| services: | | |
| db | |
| - name: Wait for DB to be ready | |
| run: | | |
| timeout 60s bash -c 'until nc -z localhost 5432; do echo "Waiting for database connection..."; sleep 2; done' | |
| shell: bash | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Install Playwright browsers | |
| run: npx playwright install --with-deps | |
| if: steps.playwright-cache.outputs.cache-hit != 'true' | |
| - name: Seed database | |
| run: | | |
| pnpm db:migrate | |
| pnpm db:seed | |
| - name: Run Playwright tests | |
| id: playwright-tests | |
| run: npx playwright test | |
| continue-on-error: true | |
| - name: Upload Playwright report | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| retention-days: 30 | |
| - name: Check test results | |
| if: steps.playwright-tests.outcome == 'failure' | |
| run: exit 1 |