21 lines
573 B
YAML
21 lines
573 B
YAML
name: Build PR Documentation
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
uses: huggingface/doc-builder/.github/workflows/build_pr_documentation.yml@main
|
|
with:
|
|
repo_owner: xenova
|
|
commit_sha: ${{ github.sha }}
|
|
pr_number: ${{ github.event.number }}
|
|
package: transformers.js
|
|
path_to_docs: transformers.js/docs/source
|
|
pre_command: cd transformers.js && npm install && npm run docs-api
|
|
additional_args: --not_python_module
|