File tree Expand file tree Collapse file tree 5 files changed +35
-12
lines changed Expand file tree Collapse file tree 5 files changed +35
-12
lines changed Original file line number Diff line number Diff line change 1+ name : Check Markdown
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ pull_request :
8+ branches : ' *'
9+
10+ jobs :
11+ build :
12+
13+ runs-on : ubuntu-latest
14+
15+ steps :
16+
17+ - uses : actions/checkout@v2
18+ with :
19+ submodules : true
20+ fetch-depth : 1
21+
22+ - uses : actions/setup-node@v2
23+ with :
24+ node-version : ' 10'
25+
26+ - name : Install dependencies and check markdown
27+ run : |
28+ npm install `cat npm-requirements.txt`
29+ npx remark README.md --frail
30+ npx remark ./notebooks/ --frail
31+ npx remark ./tests/ --frail
32+ npx remark ./docs/ --frail
33+
34+
Original file line number Diff line number Diff line change 66 push :
77 branches :
88 - master
9- - dev
109 pull_request :
1110 branches : ' *'
1211
Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - master
7- - dev
87 pull_request :
98 branches : ' *'
109
Original file line number Diff line number Diff line change 1- name : CI
1+ name : MOxUnit
22
33on :
44 push :
Original file line number Diff line number Diff line change 4646
4747 - name : " BIDS validator: create and check dataset"
4848 script : octave $OCTFLAGS --eval "test_makeRawDataset" && bids-validator `pwd`/output/raw/ --ignoreNiftiHeaders
49-
50- - name : " Check markdown"
51- before_script :
52- - npm install `cat npm-requirements.txt`
53- script :
54- - remark README.md --frail
55- - remark ./notebooks/ --frail
56- - remark ./tests/ --frail
57- - remark ./docs/ --frail
You can’t perform that action at this time.
0 commit comments