DO NOT MERGE: Firestore: implement an experiment to determine parameters for index auto-creation #1724
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Doc Change Check (Run "yarn docgen devsite" if this fails) | |
on: pull_request | |
jobs: | |
doc-check: | |
name: Check if reference docs have changed | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
with: | |
# get all history for the diff | |
fetch-depth: 0 | |
- name: Set up Node (16) | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Yarn install | |
run: yarn | |
- name: Run doc generation (devsite docs) | |
run: yarn docgen devsite | |
- name: Check for changes in docs-devsite dir (fail if so) | |
run: git diff --exit-code docs-devsite | |
- name: Reference documentation needs to be updated. See message below. | |
if: ${{ failure() }} | |
run: echo "Changes in this PR affect the reference docs. Run \`yarn docgen devsite\` locally to regenerate docs and add them to this PR." |