File tree Expand file tree Collapse file tree 3 files changed +903
-3
lines changed Expand file tree Collapse file tree 3 files changed +903
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Broken link checker
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 0 13 * * 1-5'
6
+ workflow_dispatch :
7
+
8
+ jobs :
9
+ broken-link-checker :
10
+ name : Broken link checker
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - name : Git Checkout
14
+ uses : actions/checkout@v4
15
+ - name : Setup pnpm
16
+ uses : pnpm/action-setup@v4
17
+ - name : Setup Node
18
+ uses : actions/setup-node@v4
19
+ with :
20
+ node-version-file : .nvmrc
21
+ cache : pnpm
22
+ - name : Install Packages
23
+ run : pnpm install --frozen-lockfile
24
+ - run : pnpm blc https://tanstack.com -ro --excludeExternalLinks
Original file line number Diff line number Diff line change 85
85
"@types/react-dom" : " ^18.3.1" ,
86
86
"@types/remove-markdown" : " ^0.3.4" ,
87
87
"autoprefixer" : " ^10.4.18" ,
88
+ "broken-link-checker" : " ^0.7.8" ,
88
89
"dotenv-cli" : " ^8.0.0" ,
89
90
"eslint" : " ^8.57.0" ,
90
91
"eslint-plugin-unicorn" : " ^49.0.0" ,
You can’t perform that action at this time.
0 commit comments