Add doc.getStats
for debugging purpose (#920)
#602
This file contains 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: Github Page Publish | |
on: | |
push: | |
branches: | |
- 'main' | |
paths-ignore: | |
- 'test/**' | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2.3.1 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
- name: Setup Node 🔧 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
cache: 'pnpm' | |
cache-dependency-path: pnpm-lock.yaml | |
- name: Cache pnpm store | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm- | |
- name: Install Dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: pnpm install | |
- name: Build 🔧 | |
run: | | |
pnpm sdk build | |
pnpm sdk build:docs | |
pnpm build:examples | |
pnpm sdk build:ghpages | |
- name: Deploy 🚀 | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./packages/sdk/ghpages | |
enable_jekyll: false |