Skip to content

Update frontend API URL configuration to use runtime config #38

Update frontend API URL configuration to use runtime config

Update frontend API URL configuration to use runtime config #38

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
frontend-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Run frontend tests
run: make frontend-test
backend-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
steps:
- uses: actions/checkout@v4
- name: Set up Docker
uses: docker/setup-buildx-action@v3
- name: Clean up any existing test containers
run: make test-clean
- name: Run backend tests
run: make backend-test
- name: Clean up test containers
if: always()
run: make test-clean