diff --git a/.github/workflows/check-docs.yml b/.github/workflows/check-docs.yml index bf29c0f366..69b3b7e6d5 100644 --- a/.github/workflows/check-docs.yml +++ b/.github/workflows/check-docs.yml @@ -37,6 +37,11 @@ jobs: with: node-version: ${{ matrix.node-version }} + - name: Generate Extensions API Reference using typedocs + run: | + yarn install + yarn typedocs-extensions-api + - name: Verify that the markdown is valid run: | yarn run verify-docs diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9ca4a66b14..25e259be6f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,15 +41,15 @@ jobs: with: node-version: ${{ matrix.node-version }} - - name: Verify that the markdown is valid - run: | - yarn run verify-docs - - name: Generate Extensions API Reference using typedocs run: | yarn install yarn typedocs-extensions-api + - name: Verify that the markdown is valid + run: | + yarn run verify-docs + - name: mkdocs deploy master if: contains(github.ref, 'refs/heads/master') run: |