ci: Add E2E test workflow #4
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: Run E2E Tests | |
on: [pull_request] | |
jobs: | |
run-e2e-tests: | |
name: Run E2e Tests | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: bitnami/postgresql | |
ports: | |
- 5432:5432 | |
env: | |
POSTGRESQL_USERNAME: docker | |
POSTGRESQL_PASSWORD: docker | |
POSTGRESQL_DATABASE: apisolid | |
steps: | |
- name: Download Application | |
uses: actions/checkout@v3 | |
- name: Install PNPM package manager | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Run Prisma | |
run: pnpm prisma generate | |
- name: Run Tests | |
run: pnpm test:e2e | |
env: | |
JWT_SECRET: testing | |
DATABASE_URL: "postgresql://docker:docker@localhost:5432/apisolid?schema=public" |