Skip to content

Build front end before starting services #13

Build front end before starting services

Build front end before starting services #13

Workflow file for this run

name: E2E Testing
on: [push]
jobs:
e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.18.2"
cache: "yarn"
- name: Install dependencies
run: yarn install --immutable
- name: Build frontend
run: yarn run build
- name: Run web service and E2E tests
run: docker compose -f docker-compose-e2e-tests.yml up --exit-code-from e2e-tests