Skip to content

another approach to getting ci working #9

another approach to getting ci working

another approach to getting ci working #9

Workflow file for this run

name: E2E Test on PR
on:
push: {} # TODO remove this once tested
pull_request:
branches:
- main
jobs:
cypress-run:
name: e2e
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run docker-compose
working-directory: ./.devcontainer
run: |
docker compose -f docker-compose.yml -f docker-compose.e2e.yml build
docker compose -f docker-compose.yml -f docker-compose.e2e.yml up -d
- name: Cypress run
uses: cypress-io/github-action@v6
with:
working-directory: ./e2e