-
Notifications
You must be signed in to change notification settings - Fork 5
60 lines (49 loc) · 1.73 KB
/
integration-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# 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