Skip to content

Commit 1b5a6ac

Browse files
committed
Add GHA build
Signed-off-by: Gábor Lipták <[email protected]>
1 parent 3e87ff8 commit 1b5a6ac

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"config:recommended"
4+
"config:base"
55
]
66
}

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

website/docusaurus.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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}`,

0 commit comments

Comments
 (0)