Skip to content

Commit e4bcea5

Browse files
committed
feat: setup linkinator links checker
1 parent 75f780f commit e4bcea5

File tree

4 files changed

+522
-114
lines changed

4 files changed

+522
-114
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
logs
2+
13
.parcel-cache
24

35
.dev*

linkinator.config.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"concurrency": 100,
3+
"recurse": true,
4+
"skip": "github",
5+
"verbosity": "error"
6+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"scripts": {
1414
"version": "pnpm lerna version --conventional-commits",
1515
"release": "pnpm lerna publish from-git",
16-
"demo": "curl -s http://localhost:2424/ > /dev/null || (cd demo && pnpm dev)",
16+
"test:links": "linkinator http://localhost:2425 2>&1 | tee ./logs/broken-links.log",
1717
"cypress:open": "pnpm run demo & pnpm cypress open",
1818
"cypress:run": "pnpm run demo & pnpm cypress run",
1919
"test": "echo \"Skipping: no pre-commit test specified\" && exit 0",

0 commit comments

Comments
 (0)