Skip to content

Commit

Permalink
build: build docs in GitHub Actions CI workflow
Browse files Browse the repository at this point in the history
Backport-PR-URL: #32608
PR-URL: #31504
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
richardlau authored and MylesBorins committed Apr 2, 2020
1 parent 46f83df commit c42cb79
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ name: CI
on: [push, pull_request]

jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: NODE=$(which node) make doc-only
- uses: actions/upload-artifact@v1
with:
name: docs
path: out/doc
build-linux:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit c42cb79

Please sign in to comment.