Skip to content

Testing run unit tests on each push #1

Testing run unit tests on each push

Testing run unit tests on each push #1

Workflow file for this run

name: Run E2E Tests
on: [push]
jobs:
run-unit-tests:
name: Run E2E Tests
runs-on: ubuntu-latest
services:
postgres:
image: bitnami/postgresql
ports:
- 8080:5432
env:
POSTGRESQL_USERNAME: docker
POSTGRESQL_PASSWORD: docker
POSTGRESQL_DATABASE: orange-db
steps:

Check failure on line 20 in .github/workflows/run-e2e-tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/run-e2e-tests.yml

Invalid workflow file

You have an error in your yaml syntax on line 20
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- run: pnpm install
- run: pnpm run pretest:e2e
- run: pnpm run test:e2e
env:
DATABASE_URL: "postgresql://docker:docker@localhost:8080/orange-db?schema=public"