Skip to content

fixed tests

fixed tests #4

Workflow file for this run

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: project
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Use Node
uses: actions/setup-node@v3
with:
node-version: 19
- run: npm i
- run: npm run test:e2e
env:
DATABASE_URL: 'postgresql://docker:docker@localhost:5432/project?schema=public'