Skip to content

first commit

first commit #1

Workflow file for this run

name: Can build documentation
on:
push:
paths:
- 'documentation/**'
workflow_dispatch:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v4
- name: 🤖 Setup Pages
uses: actions/configure-pages@v5
id: configure
- name: 🔨 Build
env:
GITHUB_ORIGIN: ${{ steps.configure.outputs.origin }}
GITHUB_BASE: ${{ steps.configure.outputs.base_path }}
run: |
cd documentation
yarn
yarn build