fix: find not having a return result #116
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |