Skip to content

ADM-1010 [frontend][backend]: fix the bug when story point sum is zer… #1821

ADM-1010 [frontend][backend]: fix the bug when story point sum is zer…

ADM-1010 [frontend][backend]: fix the bug when story point sum is zer… #1821

Workflow file for this run

name: Docs
on:
push:
branches:
- main
workflow_dispatch:
defaults:
run:
working-directory: ./docs
jobs:
deploy:
runs-on: ubuntu-latest
if: ${{ contains(github.event.head_commit.message, '[docs]') }}
steps:
- uses: actions/checkout@v4
- name: Use lts Node.js
uses: actions/setup-node@v4
with:
node-version: latest
- name: Install & Lint
run: |
npm install -g pnpm
pnpm install --no-frozen-lockfile
pnpm lint
- name: Build docs
run: pnpm run build
- name: Deploy to github pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist
publish_branch: gh-pages
- name: upload index to Algolia
run: pnpm run algolia