2019-09-26 16:25:26 +03:00
|
|
|
name: Docs
|
2020-10-29 19:26:15 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-03-22 09:03:51 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2020-10-29 19:26:15 +02:00
|
|
|
pull_request:
|
2021-12-02 23:02:11 +02:00
|
|
|
workflow_dispatch:
|
2020-10-29 19:26:15 +02:00
|
|
|
|
2019-09-26 16:25:26 +03:00
|
|
|
env:
|
2020-11-23 21:32:25 +02:00
|
|
|
FORCE_COLOR: 2
|
2022-11-13 16:19:29 +02:00
|
|
|
NODE: 18
|
2019-09-26 16:25:26 +03:00
|
|
|
|
2022-12-16 12:50:12 +05:30
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2019-09-26 16:25:26 +03:00
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2022-03-02 16:51:46 +02:00
|
|
|
uses: actions/checkout@v3
|
2022-11-09 09:21:55 +02:00
|
|
|
with:
|
|
|
|
persist-credentials: false
|
2019-09-26 16:25:26 +03:00
|
|
|
|
2020-10-29 19:26:15 +02:00
|
|
|
- name: Set up Node.js
|
2022-03-01 15:19:34 +02:00
|
|
|
uses: actions/setup-node@v3
|
2019-09-26 16:25:26 +03:00
|
|
|
with:
|
|
|
|
node-version: "${{ env.NODE }}"
|
2021-07-19 18:38:49 +03:00
|
|
|
cache: npm
|
2019-09-26 16:25:26 +03:00
|
|
|
|
|
|
|
- run: java -version
|
|
|
|
|
|
|
|
- name: Install npm dependencies
|
|
|
|
run: npm ci
|
|
|
|
|
2022-01-29 14:42:56 +02:00
|
|
|
- name: Build docs
|
|
|
|
run: npm run docs-build
|
|
|
|
|
|
|
|
- name: Validate HTML
|
|
|
|
run: npm run docs-vnu
|
|
|
|
|
|
|
|
- name: Run linkinator
|
|
|
|
uses: JustinBeckwith/linkinator-action@v1
|
|
|
|
with:
|
|
|
|
paths: _site
|
|
|
|
recurse: true
|
|
|
|
verbosity: error
|
|
|
|
skip: "^(?!http://localhost)"
|