refactor: reorder fields in AddressSerializer for improved clarity an… #1088
Workflow file for this run
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
# action.yml | |
name: 'Run integration-tests' | |
on: pull_request | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
################################################### | |
# CHECKOUT | |
################################################### | |
- name: Checkout frontend | |
uses: actions/checkout@v4 | |
with: | |
path: frontend | |
repository: amsterdam/zaken-frontend | |
- name: Checkout backend | |
uses: actions/checkout@v4 | |
with: | |
path: backend | |
################################################### | |
# BACKEND | |
################################################### | |
- run: docker network create zaken_network | |
working-directory: backend | |
- run: docker network create top_and_zaak_backend_bridge | |
working-directory: backend | |
- run: docker compose -f docker-compose.local.yml up --build --detach | |
working-directory: backend | |
################################################### | |
# FRONTEND | |
################################################### | |
- run: npm install | |
working-directory: frontend | |
- run: npm run lint:fix | |
working-directory: frontend | |
- run: npm run start &>/dev/null & | |
working-directory: frontend | |
################################################### | |
# On failure | |
################################################### | |
- if: ${{ failure() }} | |
name: "ON FAILURE: Which containers were running while failing?" | |
run: docker ps -a | |
- if: ${{ failure() }} | |
name: "ON FAILURE: Backend logs" | |
run: docker logs backend_zaak-gateway_1 | |
- if: ${{ failure() }} | |
name: "ON FAILURE: Database logs" | |
run: docker logs backend_database_1 |