File tree Expand file tree Collapse file tree 2 files changed +46
-5
lines changed Expand file tree Collapse file tree 2 files changed +46
-5
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ main ]
6
+ pull_request :
7
+ branches : [ main ]
8
+
9
+ jobs :
10
+ docs-validation :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v3
14
+
15
+ - name : Setup Node.js
16
+ uses : actions/setup-node@v3
17
+ with :
18
+ node-version : ' 18'
19
+
20
+ - name : Install Mintlify
21
+ run : npm i -g mintlify
22
+
23
+ - name : Check broken links
24
+ run : mintlify broken-links
25
+
26
+ - name : Run Vale linting
27
+ uses : errata-ai/vale-action@reviewdog
28
+ with :
29
+ files : .
30
+ fail_on_error : true
31
+
32
+ - name : Validate OpenAPI specs
33
+ run : mintlify openapi-check
Original file line number Diff line number Diff line change 22
22
{
23
23
"group" : " Editing" ,
24
24
"icon" : " pen-paintbrush" ,
25
- "pages" : [" development" , " web-editor" ]
25
+ "pages" : [
26
+ " development" ,
27
+ " web-editor"
28
+ ]
26
29
},
27
30
" settings/global" ,
28
31
{
133
136
{
134
137
"group" : " Dashboard Access" ,
135
138
"icon" : " house-lock" ,
136
- "pages" : [" advanced/dashboard/sso" , " advanced/dashboard/permissions" ]
139
+ "pages" : [
140
+ " advanced/dashboard/sso" ,
141
+ " advanced/dashboard/permissions"
142
+ ]
137
143
},
138
144
{
139
145
"group" : " REST API" ,
205
211
"pages" : [
206
212
" integrations/analytics/overview" ,
207
213
" integrations/analytics/amplitude" ,
208
- " integrations/analytics/clearbit" ,
214
+ " integrations/analytics/clearbit" ,
209
215
" integrations/analytics/fathom" ,
210
216
" integrations/analytics/google-analytics" ,
211
217
" integrations/analytics/google-tag-manager" ,
251
257
"groups" : [
252
258
{
253
259
"group" : " Changelog" ,
254
- "pages" : [" changelog/overview" ]
260
+ "pages" : [
261
+ " changelog/overview"
262
+ ]
255
263
}
256
264
]
257
265
}
363
371
"publicApiKey" : " pk_76a6caa274e800f3ceff0b2bc6b9b9d82ab8"
364
372
}
365
373
}
366
- }
374
+ }
You can’t perform that action at this time.
0 commit comments