File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed
Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
33 "extends" : [
4- " config:recommended "
4+ " config:base "
55 ]
66}
Original file line number Diff line number Diff line change 1+ name : ci
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ pull_request :
8+
9+ jobs :
10+ build :
11+ name : Build Docusaurus
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v5
15+ with :
16+ fetch-depth : 0
17+ - uses : actions/setup-node@v6
18+ with :
19+ node-version : 22
20+
21+ - name : Install dependencies
22+ run : npm install
23+ working-directory : website
24+ - name : Build website
25+ run : npm run build
26+ working-directory : website
Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ module.exports = {
1212 tagline : `AUTOMATE, ORCHESTRATE and ACCELERATE` ,
1313 url : 'https://finos.org' ,
1414 baseUrl : '/' ,
15+ onBrokenAnchors : "throw" ,
16+ onBrokenLinks : "throw" ,
17+ onBrokenMarkdownLinks : "throw" ,
18+ onDuplicateRoutes : "throw" ,
1519 trailingSlash : false ,
1620 favicon : 'img/favicon/fluxnova.ico' ,
1721 projectName : `FINOS ${ projectName } ` ,
You can’t perform that action at this time.
0 commit comments