We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a98ed7 commit 187c999Copy full SHA for 187c999
.github/workflows/ci.yml
@@ -13,7 +13,8 @@ jobs:
13
node-version: latest
14
cache: npm
15
- run: npm ci
16
- - run: npm run lint
+ - run: npm run lint:js
17
+ - run: npm run lint:md
18
- run: npm run build -- specs
19
20
specs-ietf:
package.json
@@ -5,7 +5,8 @@
5
"type": "module",
6
"main": "index.js",
7
"scripts": {
8
- "lint": "eslint . ; remark --no-stdout --frail specs/",
+ "lint:js": "eslint .",
9
+ "lint:md": "remark --no-stdout --frail specs/",
10
"build": "remark --rc-path specs/.remarkrc-build.js --output web/"
11
},
12
"license": "MIT",
0 commit comments