2024-05-29 19:11:07 +02:00
|
|
|
name: Docs build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
2024-09-03 14:23:39 +02:00
|
|
|
pre-job:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
should_run: ${{ steps.found_paths.outputs.docs == 'true' || steps.should_force.outputs.should_force == 'true' }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
- id: found_paths
|
|
|
|
uses: dorny/paths-filter@v3
|
|
|
|
with:
|
|
|
|
filters: |
|
|
|
|
docs:
|
|
|
|
- 'docs/**'
|
|
|
|
- name: Check if we should force jobs to run
|
|
|
|
id: should_force
|
2024-10-16 13:03:43 +02:00
|
|
|
run: echo "should_force=${{ github.event_name == 'release' || github.ref_name == 'main' }}" >> "$GITHUB_OUTPUT"
|
2024-09-03 14:23:39 +02:00
|
|
|
|
2024-05-29 19:11:07 +02:00
|
|
|
build:
|
2024-09-05 00:28:30 +02:00
|
|
|
name: Docs Build
|
2024-09-03 14:23:39 +02:00
|
|
|
needs: pre-job
|
|
|
|
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
|
2024-05-29 19:11:07 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ./docs
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
2024-06-25 15:01:15 +02:00
|
|
|
- name: Setup Node
|
|
|
|
uses: actions/setup-node@v4
|
|
|
|
with:
|
|
|
|
node-version-file: './docs/.nvmrc'
|
|
|
|
|
2024-05-29 19:11:07 +02:00
|
|
|
- name: Run npm install
|
|
|
|
run: npm ci
|
|
|
|
|
|
|
|
- name: Check formatting
|
|
|
|
run: npm run format
|
|
|
|
|
|
|
|
- name: Run build
|
|
|
|
run: npm run build
|
|
|
|
|
|
|
|
- name: Upload build output
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
with:
|
|
|
|
name: docs-build-output
|
|
|
|
path: docs/build/
|
|
|
|
retention-days: 1
|