File tree 2 files changed +22
-19
lines changed
2 files changed +22
-19
lines changed Original file line number Diff line number Diff line change 1
1
name : JSON Schema
2
2
on :
3
3
- push
4
+ - pull_request
5
+
4
6
jobs :
5
7
specs :
6
- runs-on : ubuntu-22.04
8
+ runs-on : ubuntu-latest
7
9
steps :
8
- - uses : actions/checkout@v3
9
- - uses : actions/setup-python@v4
10
- with :
11
- python-version : " 3.10"
12
- - run : pip install --requirement requirements.txt
13
- - run : xml2rfc --version
14
- - run : make all
15
- - uses : actions/upload-artifact@v3
16
- with :
17
- name : specification-docs
18
- path : |
19
- *.html
20
- *.txt
21
- !requirements.txt
10
+ - uses : actions/checkout@v4
11
+ - uses : actions/setup-node@v4
12
+ with :
13
+ node-version : latest
14
+ cache : npm
15
+ - run : npm ci
16
+ - run : npm run lint
17
+ - run : npm run build-all
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ dotenv.config();
23
23
24
24
const build = async ( filename ) => {
25
25
const md = readFileSync ( filename , "utf-8" ) ;
26
- const html = await remark ( )
26
+ const file = await remark ( )
27
27
. use ( remarkPresetLintMarkdownStyleGuide )
28
28
. use ( remarkGfm )
29
29
. use ( remarkHeadingId )
@@ -164,11 +164,13 @@ const build = async (filename) => {
164
164
</style>
165
165
</head>
166
166
<body>
167
- ${ html . toString ( ) }
167
+ ${ file . toString ( ) }
168
168
</body>
169
169
</html>` ) ;
170
170
171
- console . error ( reporter ( html ) ) ;
171
+ console . error ( reporter ( file ) ) ;
172
+
173
+ return file . messages . length ;
172
174
} ;
173
175
174
176
( async function ( ) {
@@ -177,9 +179,14 @@ const build = async (filename) => {
177
179
console . error ( "WARNING: No files built. Usage: 'npm run build -- filename.md'" ) ;
178
180
}
179
181
182
+ let messageCount = 0 ;
180
183
for ( const filename of files ) {
181
184
console . log ( `Building: ${ filename } ...` ) ;
182
- await build ( filename ) ;
185
+ messageCount += await build ( filename ) ;
183
186
console . log ( "" ) ;
184
187
}
188
+
189
+ if ( messageCount > 0 ) {
190
+ process . exit ( 1 ) ;
191
+ }
185
192
} ( ) ) ;
You can’t perform that action at this time.
0 commit comments