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