1
0
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:
Christopher Kolstad 2021-11-23 15:19:59 +01:00 committed by GitHub
parent 7056d516b4
commit 1848d8d4eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/build_doc_prs.yaml vendored Normal file
View 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