Issue templates

This commit is contained in:
Tanguy Duhamel
2025-09-29 21:33:32 +02:00
parent 323a434c73
commit bb80c73106
6 changed files with 242 additions and 0 deletions

28
.github/workflows/docs-test-deploy.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
name: Docusaurus test deployment
on:
pull_request:
branches:
- main
jobs:
test-deploy:
name: Test deployment
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./docs
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
cache-dependency-path: "**/package-lock.json"
- name: Install dependencies
run: npm ci
- name: Test build website
run: npm run build