forked from po-ui/po-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
286 lines (236 loc) · 8.98 KB
/
ci.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
# Nome do workflow, um repositório pode ter um ou mais workflows.
name: CI
# Define em quais situações esse workflow será executado
on:
push:
branches: [master, development, "[0-9]+.x.x"]
pull_request:
branches: [master, development, "[0-9]+.x.x"]
types: [opened, reopened, synchronize, closed]
# Os jobs são conjuntos de actions que são executados na mesma máquina virtual.
# É possível ter mais de um job e assim executar ações paralelamente.
jobs:
# discord_notification_on_pr:
# runs-on: ubuntu-latest
# if: github.event_name == 'pull_request' && github.event.pull_request.merged == false
# steps:
# - name: Notify Discord on PR
# env:
# DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
# run: |
# AUTHOR="${{ github.event.pull_request.user.login }}"
# PR_TITLE="${{ github.event.pull_request.title }}"
# PR_URL="${{ github.event.pull_request.html_url }}"
# curl -X POST -H "Content-Type: application/json" \
# -d "{\"content\": \"🚀 **PR Criada com Sucesso 🚀**\\n- Autor: $AUTHOR\\n- Título: $PR_TITLE\\n- Link: $PR_URL\"}" \
# $DISCORD_WEBHOOK_URL
lint:
if: github.event_name != 'pull_request' || github.event.action != 'closed'
runs-on: ubuntu-20.04
# As etapas do workflow são definidas nessa tag.
steps:
# Definição da action
- uses: actions/checkout@v3
# Parâmetros para a ação
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v5
- uses: actions/setup-node@v3
with:
node-version: 18
# Executa um comando do projeto na máquina virtual
- run: npm i
- run: npm run format:check
- run: npm run lint:storage
- run: npm run lint:sync
- run: npm run lint:ui
- run: npm run lint:templates
- run: npm run lint:code-editor
build:
name: Build packages
if: github.event_name != 'pull_request' || github.event.action != 'closed'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
- run: npm run build
- run: npm run build:portal:docs
- run: npm run build:portal:prod
- uses: actions/upload-artifact@v3
with:
name: portal
path: dist/portal
sonar_analysis:
name: SonarQube Analysis
if: github.event_name == 'pull_request' && github.event.action != 'closed'
runs-on: ubuntu-20.04
needs: [test-ui, test-templates, test-code-editor, test-storage, test-sync]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
# Baixa os artefatos de cobertura gerados pelos jobs de teste e extrai para o diretório correto
- name: Download UI coverage report
uses: actions/download-artifact@v3
with:
name: ui-coverage
path: coverage/ui
- name: Download Code Editor coverage report
uses: actions/download-artifact@v3
with:
name: code-editor-coverage
path: coverage/code-editor
- name: Download Storage coverage report
uses: actions/download-artifact@v3
with:
name: storage-coverage
path: coverage/storage
- name: Download Sync coverage report
uses: actions/download-artifact@v3
with:
name: sync-coverage
path: coverage/sync
- name: Download Templates coverage report
uses: actions/download-artifact@v3
with:
name: templates-coverage
path: coverage/templates
# Verifica se os arquivos de cobertura foram baixados corretamente
- name: Verificar arquivos de cobertura
run: ls -la coverage/code-editor/lcov.info coverage/storage/lcov.info coverage/sync/lcov.info coverage/templates/lcov.info coverage/ui/lcov.info
# Executa o script do Gulp para o SonarQube
# - name: Run SonarQube
# run: npm run sonarqube -- --url=${{ secrets.SONAR_HOST_URL }} --projectKey=${{ secrets.SONAR_PROJECT_KEY }} --token=${{ secrets.SONAR_TOKEN }}
# - name: Run SonarQube for PR
# run: |
# export SONARQUBE_SCANNER_PARAMS='{
# "sonar.pullrequest.key": "${{ github.event.pull_request.number }}",
# "sonar.pullrequest.branch": "${{ github.head_ref }}",
# "sonar.pullrequest.base": "${{ github.base_ref }}"
# }'
# npm run sonarqube -- --url=${{ secrets.SONAR_HOST_URL }} --projectKey=${{ secrets.SONAR_PROJECT_KEY }} --token=${{ secrets.SONAR_TOKEN }}
- name: Run full SonarQube analysis
run: |
export SONAR_SCANNER_JSON_PARAMS='{
"sonar.pullrequest.key": "${{ github.event.pull_request.number }}",
"sonar.pullrequest.branch": "${{ github.head_ref }}",
"sonar.pullrequest.base": "${{ github.base_ref }}",
"sonar.scm.exclusions.disabled": "true"
}'
npm run sonarqube -- --url=${{ secrets.SONAR_HOST_URL }} --projectKey=${{ secrets.SONAR_PROJECT_KEY }} --token=${{ secrets.SONAR_TOKEN }}
test-ui:
name: Test ui
if: github.event_name != 'pull_request' || github.event.action != 'closed'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
- run: npm run test:ui
- run: npm run test:ui:schematics
# Salva o relatório de cobertura como artefato no GitHub Actions
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: ui-coverage
path: coverage/ui/lcov.info
test-templates:
name: Test templates
if: github.event_name != 'pull_request' || github.event.action != 'closed'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
- run: npm run build:ui:lite
- run: npm run test:templates
- run: npm run test:templates:schematics
# Salva o relatório de cobertura como artefato no GitHub Actions
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: templates-coverage
path: coverage/templates/lcov.info
test-code-editor:
name: Test code editor
if: github.event_name != 'pull_request' || github.event.action != 'closed'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
- run: npm run test:code-editor
- run: npm run test:code-editor:schematics
# Salva o relatório de cobertura como artefato no GitHub Actions
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: code-editor-coverage
path: coverage/code-editor/lcov.info
test-storage:
name: Test storage
if: github.event_name != 'pull_request' || github.event.action != 'closed'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
- run: npm run test:storage
- run: npm run test:storage:schematics
# Salva o relatório de cobertura como artefato no GitHub Actions
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: storage-coverage
path: coverage/storage/lcov.info
test-sync:
name: Test sync
if: github.event_name != 'pull_request' || github.event.action != 'closed'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i
- run: npm run build:storage:lite
- run: npm run test:sync
- run: npm run test:sync:schematics
# Salva o relatório de cobertura como artefato no GitHub Actions
- name: Upload coverage report
uses: actions/upload-artifact@v3
with:
name: sync-coverage
path: coverage/sync/lcov.info
# Job para excluir a ramificação do SonarQube após o merge
delete_sonar_branch:
if: github.event.pull_request.merged == true
runs-on: ubuntu-20.04
steps:
- name: Excluir Ramificação do SonarQube
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }}
SONAR_PROJECT_KEY: ${{secrets.SONAR_PROJECT_KEY}}
BRANCH_NAME: ${{ github.head_ref }}
run: |
curl -u "${{ secrets.SONAR_TOKEN }}:" -X POST "${{ secrets.SONAR_HOST_URL }}/api/project_branches/delete" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "project=${{secrets.SONAR_PROJECT_KEY}}" \
-d "branch=${{ github.head_ref }}"