We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8472a commit 0c8cd4bCopy full SHA for 0c8cd4b
.github/workflows/ci.yaml
@@ -36,6 +36,15 @@ jobs:
36
node-version: 12
37
- run: npm install
38
- run: npm run lint
39
+ docs:
40
+ runs-on: ubuntu-latest
41
+ steps:
42
+ - uses: actions/checkout@v2
43
+ - uses: actions/setup-node@v1
44
+ with:
45
+ node-version: 12
46
+ - run: npm install
47
+ - run: npm run docs-test
48
coverage:
49
runs-on: ubuntu-latest
50
steps:
package.json
@@ -17,7 +17,8 @@
17
"fix": "gts fix",
18
"codecov": "c8 report --reporter=json && codecov -f coverage/*.json",
19
"lint": "gts lint",
20
- "build-binaries": "pkg . --out-path build/binaries"
+ "build-binaries": "pkg . --out-path build/binaries",
21
+ "docs-test": "npm link && linkinator ./README.md"
22
},
23
"dependencies": {
24
"chalk": "^4.0.0",
0 commit comments