This repository was archived by the owner on Aug 7, 2025. It is now read-only.
chore(deps-dev): bump @keplr-wallet/types from 0.12.212 to 0.12.234 in the patch-updates group #227
Workflow file for this run
This file contains hidden or 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: Build VitePress Site | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| cache: yarn # or pnpm / npm | |
| - name: Install dependencies | |
| run: yarn install # or pnpm install / npm ci | |
| - name: Build with VitePress | |
| run: yarn docs:build # or pnpm docs:build / npm docs:build |