Skip to content

ci: e2e

ci: e2e #1

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:
api-solid-pg:
image: bitnami/postgresql
ports:
- 5432:5432
environment:

Check failure on line 15 in .github/workflows/run-e2e-test.yml

View workflow run for this annotation

GitHub Actions / Run E2E Tests

Invalid workflow file

The workflow is not valid. .github/workflows/run-e2e-test.yml (Line: 15, Col: 9): Unexpected value 'environment'
- POSTGRESQL_USERNAME=docker
- POSTGRESQL_PASSWORD=docker
- POSTGRESQL_DATABASE=apisolid
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run test:e2e
env:
JWT_SECRECT: testing
DATABASE_URL: "postgresql://docker:docker@localhost:5432/apisolid?schema=public"