Feat/hide items crud reference #1605
Workflow file for this run
This file contains hidden or 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: Test Docker Compose | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| jobs: | |
| test-docker-compose: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Generate .env for CI | |
| run: bash scripts/ci-generate-env.sh db | |
| - run: docker compose build | |
| - run: docker compose down -v --remove-orphans | |
| - run: docker compose up -d --wait backend frontend adminer | |
| - name: Test backend is up | |
| run: curl http://localhost:8000/api/v1/utils/health-check | |
| - name: Test frontend is up | |
| run: curl http://localhost:5173 | |
| - run: docker compose down -v --remove-orphans |