mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 6 to 7. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
name: _Build documentation
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
run_tests:
|
|
description: Run the documentation test suite before building
|
|
required: false
|
|
default: true
|
|
type: boolean
|
|
upload_pages_artifact:
|
|
description: Upload the build for a later GitHub Pages deployment job
|
|
required: false
|
|
default: false
|
|
type: boolean
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build documentation
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
working-directory: github-pages
|
|
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v7
|
|
with:
|
|
node-version: '22.13'
|
|
cache: npm
|
|
cache-dependency-path: github-pages/package-lock.json
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Run tests
|
|
if: inputs.run_tests
|
|
run: npm test
|
|
|
|
- name: Build documentation
|
|
run: npm run build
|
|
|
|
- name: Configure Pages
|
|
if: inputs.upload_pages_artifact
|
|
uses: actions/configure-pages@v6
|
|
|
|
- name: Upload Pages artifact
|
|
if: inputs.upload_pages_artifact
|
|
uses: actions/upload-pages-artifact@v4
|
|
with:
|
|
path: github-pages/dist
|