Skip to content

Merge pull request #8 from ViniciusCestarii/dependabot/npm_and_yarn/d… #60

Merge pull request #8 from ViniciusCestarii/dependabot/npm_and_yarn/d…

Merge pull request #8 from ViniciusCestarii/dependabot/npm_and_yarn/d… #60

Workflow file for this run

name: E2E Tests
on:
push:
branches:
- main
pull_request:
branches: [main]
jobs:
test:
name: E2E Tests
runs-on: ubuntu-latest
services:
postgres:
image: bitnami/postgresql
ports:
- 5432:5432
env:
POSTGRESQL_USERNAME: postgres
POSTGRESQL_PASSWORD: postgres
POSTGRESQL_DATABASE: modular-pets
steps:
- uses: actions/checkout@v4
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.1.38
- name: Install Dependencies
run: bun install --frozen-lockfile
- name: Run E2E Tests
run: bun run test:e2e
env:
DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/modular-pets"