mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-01-06 14:45:06 +08:00
27 lines
525 B
YAML
27 lines
525 B
YAML
name: Build documentation
|
|
|
|
on:
|
|
pull_request:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build-docs:
|
|
name: Build documentation
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- uses: actions/checkout@v3 # check out this repo
|
|
|
|
- name: Build docs
|
|
run: |
|
|
cd docs
|
|
yarn install
|
|
yarn build
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: docs
|
|
path: docs/build |