Skip to content

Add documentation workflow #1

Add documentation workflow

Add documentation workflow #1

Workflow file for this run

name: Documentation on GitHub Pages
on:
push:
branches: ["master"]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version-file: .tool-versions
- name: Run npm ci
run: npm ci
- name: Build documentation
run: npm run build:ts
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: docs/
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2