File tree Expand file tree Collapse file tree 5 files changed +30
-151
lines changed Expand file tree Collapse file tree 5 files changed +30
-151
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
---
2
- name : Check for lint, spelling and link errors
2
+ name : ci
3
3
4
4
on :
5
5
workflow_call :
6
- secrets :
7
- SEGMENT_ANALYTICS_KEY :
8
- required : true
9
- LD_CLIENT_ID :
10
- required : true
11
- SENTRY_KEY :
12
- required : true
6
+ pull_request :
7
+ branches :
8
+ - main
9
+
10
+ permissions :
11
+ contents : read
13
12
14
13
env :
15
14
SEGMENT_ANALYTICS_KEY : ${{ secrets.SEGMENT_ANALYTICS_KEY }}
16
15
LD_CLIENT_ID : ${{ secrets.LD_CLIENT_ID }}
17
- SENTRY_KEY : ${{ secrets.SENTRY_KEY }}
18
16
19
17
jobs :
18
+ build :
19
+ name : Build
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ - name : Build
24
+ uses : ConsenSys/github-actions/docs-build@main
25
+
26
+ case :
27
+ name : Check for case being inconsistent
28
+ runs-on : ubuntu-latest
29
+ strategy :
30
+ matrix :
31
+ folder : ['docs']
32
+ steps :
33
+ - uses : actions/checkout@v4
34
+ - name : Case check action
35
+ uses : ConsenSys/github-actions/docs-case-check@main
36
+ with :
37
+ DOC_DIR : ${{ matrix.folder }}
38
+ SKIP_TEST : true
39
+
20
40
lint :
21
41
name : Lint Code Base
22
42
runs-on : ubuntu-latest
23
- permissions :
24
- contents : read
25
43
steps :
26
44
- uses : actions/checkout@v4
27
-
28
45
- name : Lint
29
46
uses : ConsenSys/github-actions/docs-lint-all@main
30
47
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 23
23
with :
24
24
FILE_EXTENSION : mdx
25
25
MODIFIED_FILES_ONLY : no
26
+
26
27
linkCheckMd :
27
28
needs : linkCheckMdx
28
29
name : Run link check on .md files
You can’t perform that action at this time.
0 commit comments