fix: hot fix production mq issue #70
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: CI for Wishlist Service | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- services/wishlist/** | |
pull_request: | |
branches: | |
- main | |
paths: | |
- services/wishlist/** | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: services/wishlist | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Start containers | |
run: | | |
docker compose -f docker-compose.test.yaml up -d --build | |
- name: Wait for test reports | |
run: | | |
for i in {1..30}; do | |
if [ -f ./reports/index.html ]; then | |
echo "Test report is ready!" | |
break | |
fi | |
echo "Waiting for test report to be generated..." | |
sleep 5 | |
done | |
ls -lart reports | |
- name: Upload Test Reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: jacoco-reports | |
path: ${{ github.workspace }}/services/wishlist/reports |