Skip to content

update ListDoc for List #90

update ListDoc for List

update ListDoc for List #90

Workflow file for this run

name: Docs
on:
push:
branches:
- master
paths:
- 'docs/**'
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set Node.js version
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: yarn install
- name: Install dependencies in docs
run: yarn install
working-directory: ./docs
- name: Build docs
run: yarn run build
working-directory: ./docs
- name: Push docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist