From af3c28e1680a2a3aece42fc598e73ae14123236f Mon Sep 17 00:00:00 2001 From: Turadg Aleahmad Date: Tue, 5 Dec 2023 15:48:37 -0800 Subject: [PATCH] ci: yarn install before typedoc --- .github/workflows/typedoc-gh-pages.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/typedoc-gh-pages.yml b/.github/workflows/typedoc-gh-pages.yml index 0f736f11e6..05d023647c 100644 --- a/.github/workflows/typedoc-gh-pages.yml +++ b/.github/workflows/typedoc-gh-pages.yml @@ -25,8 +25,10 @@ jobs: steps: - uses: actions/checkout@v4 - uses: actions/configure-pages@v4 + # Without this the inter-package imports don't resolve + - run: yarn install # Generate the TypeDoc site - - run: npx typedoc + - run: yarn docs - uses: actions/upload-pages-artifact@v2 with: path: ./api-docs # the "out" path in typedoc.json