From 1848d8d4ebaa4400c2ac638923b3351562f7379c Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Tue, 23 Nov 2021 15:19:59 +0100 Subject: [PATCH] task: add a workflow that validates docs for PRs (#1123) --- .github/workflows/build_doc_prs.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build_doc_prs.yaml diff --git a/.github/workflows/build_doc_prs.yaml b/.github/workflows/build_doc_prs.yaml new file mode 100644 index 0000000000..c332f67003 --- /dev/null +++ b/.github/workflows/build_doc_prs.yaml @@ -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