Skip to content

fix: remove ip address validation #105

fix: remove ip address validation

fix: remove ip address validation #105

Workflow file for this run

name: Docker Compose Action
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Build the stack
run: docker compose -f docker-compose.yaml up --build --force-recreate -d
- name: Execute tests in the running services
run: |
docker compose exec -T web2text-devcontainer bun run e2e
- name: Stop and remove containers
run: docker compose down