forked from po-ui/po-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
165 lines (119 loc) · 3.51 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
# Nome do workflow, um repositório pode tem 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' ]
# 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:
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
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
test-ui:
name: Test ui
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
test-templates:
name: Test templates
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
test-code-editor:
name: Test code editor
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
test-storage:
name: Test storage
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
test-sync:
name: Test sync
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