This repository has been archived by the owner on May 3, 2024. It is now read-only.
forked from EGCETSII/decide
-
Notifications
You must be signed in to change notification settings - Fork 1
213 lines (179 loc) · 5.39 KB
/
quality-checks.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
name: Calidad 👌🧪
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:
- "**/*.md"
merge_group:
workflow_dispatch:
jobs:
dependency-review:
name: Vulnerabilidades en dependencias 🔎
runs-on: ubuntu-latest
steps:
- name: Clonar repositorio ⬇️
uses: actions/checkout@v4.1.1
with:
show-progress: false
- name: Buscar dependencias vulnerables 🦠
uses: actions/dependency-review-action@v4.2.5
with:
## Workaround from https://github.com/actions/dependency-review-action/issues/456
## TODO: Remove when necessary
base-ref: ${{ github.event.pull_request.base.sha || 'master' }}
head-ref: ${{ github.event.pull_request.head.sha || github.ref }}
conventional_commits:
name: Convención de commits 💬
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
runs-on: ubuntu-latest
steps:
- name: Clonar repositorio ⬇️
uses: actions/checkout@v4.1.1
with:
show-progress: false
- name: Verificar cumplimiento 📝
uses: webiny/action-conventional-commits@v1.3.0
run_backend:
name: Iniciar 🏃♂️
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: decide
POSTGRES_PASSWORD: decide
POSTGRES_DB: decide
ports:
- 5432:5432
# Necesario porque el contenedor no tiene comprobaciones de su salud
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
defaults:
run:
working-directory: decide
steps:
- name: Clonar repositorio ⬇️
uses: actions/checkout@v4.1.1
with:
show-progress: false
- name: Configurar Python 🐍
uses: actions/setup-python@v5.1.0
with:
python-version: '3.x'
check-latest: true
- name: Instalar dependencias 📦
run: |
# Necesario a partir de Python 3.12: https://github.com/Becksteinlab/GromacsWrapper/issues/263#issue-1966724749
echo "setuptools" >> ../requirements.txt
pip install -r ../requirements.txt
- name: Aplicar migraciones 🗃️
run: python ./manage.py migrate
- name: Iniciar servidor de Decide (Django) 🏃♂️
run: |
python manage.py runserver 127.0.0.1:8000 &
sleep 10 # Espera a que el servidor esté listo
- name: Comprobar si responde a peticiones 🩺
run: |
curl -I http://127.0.0.1:8000/
sudo pkill python
lint_frontends:
name: Lint (frontend) 🔬
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
module:
- "booth"
defaults:
run:
working-directory: decide/${{ matrix.module }}/frontend
steps:
- name: Clonar ⬇️
uses: actions/checkout@v4.1.1
with:
show-progress: false
- name: Configurar entorno Node.js ⚙️
uses: actions/setup-node@v4.0.2
with:
node-version: 20
check-latest: true
- name: Instalar dependencias 📦
run: npm ci --no-audit
- name: Ejecutar linter ✏️
run: npm run lint
typecheck_frontends:
name: Comprobación de tipos 🈯
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
module:
- "booth"
defaults:
run:
working-directory: decide/${{ matrix.module }}/frontend
steps:
- name: Clonar ⬇️
uses: actions/checkout@v4.1.1
with:
show-progress: false
- name: Configurar entorno Node.js ⚙️
uses: actions/setup-node@v4.0.2
with:
node-version: 20
check-latest: true
- name: Instalar dependencias 📦
run: npm ci --no-audit
- name: Ejecutar comprobación de tipos 📖
run: npm run typecheck
build_frontends:
name: Construir cliente 🏗️
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
module:
- "booth"
defaults:
run:
working-directory: decide/${{ matrix.module }}/frontend
steps:
- name: Clonar ⬇️
uses: actions/checkout@v4.1.1
with:
show-progress: false
- name: Configurar entorno Node.js ⚙️
uses: actions/setup-node@v4.0.2
with:
node-version: 20
check-latest: true
- name: Instalar dependencias 📦
run: npm ci --no-audit
- name: Construir 🛠️
run: npm run build
test_frontends:
name: Pruebas unitarias (cliente) 🧫
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
module:
- "booth"
defaults:
run:
working-directory: decide/${{ matrix.module }}/frontend
steps:
- name: Clonar ⬇️
uses: actions/checkout@v4.1.1
with:
show-progress: false
- name: Configurar entorno Node.js ⚙️
uses: actions/setup-node@v4.0.2
with:
node-version: 20
check-latest: true
- name: Instalar dependencias 📦
run: npm ci --no-audit
- name: Construir 🛠️
run: npm run test