mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-25 14:33:52 +01:00
22 lines
489 B
YAML
22 lines
489 B
YAML
name: Guide Docs Build Test
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'doc/guides/**'
|
|
- 'doc/starlight/**'
|
|
|
|
jobs:
|
|
build-docs:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: doc/starlight
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
- name: Build documentation
|
|
run: make build
|