mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
task: add a workflow that validates docs for PRs (#1123)
This commit is contained in:
parent
7056d516b4
commit
1848d8d4eb
17
.github/workflows/build_doc_prs.yaml
vendored
Normal file
17
.github/workflows/build_doc_prs.yaml
vendored
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
name: PR -> Build Docs
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- website/**
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validate:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: setup git config
|
||||||
|
run: |
|
||||||
|
# Build the site
|
||||||
|
cd website && yarn && yarn build
|
Loading…
Reference in New Issue
Block a user