Skip to content

Commit

Permalink
Merge branch 'main' into tux/metrics-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey authored Sep 30, 2024
2 parents 27bb078 + e0a17a9 commit 194a8be
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 13 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Deploy](https://github.com/rollkit/docs/actions/workflows/deploy.yml/badge.svg)](https://github.com/rollkit/docs/actions/workflows/deploy.yml)

# Rollkit Documentation Site

Welcome to the official documentation repository for Rollkit.
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@
"docs:preview": "vitepress preview"
},
"devDependencies": {
"@keplr-wallet/types": "0.12.129",
"@keplr-wallet/types": "0.12.130",
"i": "^0.3.7",
"mermaid": "^11.2.1",
"vitepress": "^1.3.4",
"vitepress-plugin-mermaid": "^2.0.17"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
},
"type": "module"
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -392,10 +392,10 @@
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a"
integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==

"@keplr-wallet/[email protected].129":
version "0.12.129"
resolved "https://registry.yarnpkg.com/@keplr-wallet/types/-/types-0.12.129.tgz#474f9467bcd27f21a3f32d292aee1e5aa6077f76"
integrity sha512-pLmp4kZyA86vLHmZqVdGnh5zZMXxoCGWdN09iwA7Xpiav64Ee7qqAL94RzwhlQh7f2mBH0Xm7yVs0TO+1rUoUg==
"@keplr-wallet/[email protected].130":
version "0.12.130"
resolved "https://registry.yarnpkg.com/@keplr-wallet/types/-/types-0.12.130.tgz#1179a5daf2fabaa5d2f3c068b3c816502f7b8cba"
integrity sha512-bUJ6JGpMYUAbPu6SdSG9HjAApgZirMnX4x+1Y9fwC5BCRP2zImYoleTSp+FNbG26iwfN+hUdM0uAcPWsKsfENg==
dependencies:
long "^4.0.0"

Expand Down

0 comments on commit 194a8be

Please sign in to comment.