Skip to content

Test pipeline

Test pipeline #13

Workflow file for this run

name: End-to-end tests
on: [pull_request]
jobs:
cypress-run:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build and run Docker compose
run: |
docker-compose up -d
- name: Output Docker logs
run: docker-compose logs
- name: Run Cypress tests
uses: cypress-io/github-action@v2
with:
browser: edge
headless: true
wait-on: "http://localhost"