Skip to content

feat: Implement UserInfoCard component with desktop and mobile mode (… #18

feat: Implement UserInfoCard component with desktop and mobile mode (…

feat: Implement UserInfoCard component with desktop and mobile mode (… #18

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: ['main', 'develop']
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./client
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
cache-dependency-path: './client/pnpm-lock.yaml'
- name: Install dependencies
working-directory: ./client
run: pnpm install
- name: Build documentation
run: pnpm typedoc
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./client/docs
force_orphan: true
commit_message: 'docs: deploy documentation'