diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index c6e1bdf..f5681c7 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -75,3 +75,18 @@ jobs: command: pnpm test max_attempts: 3 timeout_seconds: 180 + + build-docs: + name: Build Docs + needs: lint + runs-on: ubuntu-latest + + steps: + - name: Clone repository + uses: actions/checkout@v4 + + - name: Install dependencies + uses: ./.github/actions/install-deps + + - name: Build Docs + run: pnpm docs:build diff --git a/docs/core/getting-started.md b/docs/core/getting-started.md index ac45d72..0dfbfe9 100644 --- a/docs/core/getting-started.md +++ b/docs/core/getting-started.md @@ -191,10 +191,10 @@ For a list of public federations with invite codes, visit [Bitcoin Mints](https: ## What's Next? -- To see the sdk in action, check out the [examples](../examples/index.md) +- To see the sdk in action, check out the [examples](../examples/vite-react.md) + - Vite + React: [`examples/vite-react`](../examples/vite-react.md) + - VanillaJS + HTML example: [`examples/bare-js`](../examples/bare-js.md) - To learn more about @fedimint/core-web and how to use it effectively in your projects, explore the following topics: - [Overview](overview) - [API Reference](FedimintWallet/index) - [Architecture](architecture) -- Vite + React: [`examples/vite-core`](https://github.com/fedimint/fedimint-web-sdk/tree/main/examples/vite-core) [(demo)](https://fedimint.github.io/fedimint-web-sdk/) -- VanillaJS + HTML example: [`examples/bare-js`](https://github.com/fedimint/fedimint-web-sdk/tree/main/examples/bare-js)