Skip to content

[Docs] POC Dynamically Import Stories based on their path #15

[Docs] POC Dynamically Import Stories based on their path

[Docs] POC Dynamically Import Stories based on their path #15

Workflow file for this run

name: Build Docs
on:
pull_request:
paths:
- docs/**
branches:
- main
- next
push:
paths:
- docs/**
branches:
- main
- next
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- run: echo "${{ github.actor }}"
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
cache: "pnpm" # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies
- run: pnpm install --frozen-lockfile
- name: Copy schema files
run: pnpm run copy-schema-files
- name: Build
run: pnpm run build:lib
- name: Build Docusaurus
run: |
pnpm --filter ./docs run build