Skip to content

refactor(api/vote): refactor vote http endpoint and logic (#997) #241

refactor(api/vote): refactor vote http endpoint and logic (#997)

refactor(api/vote): refactor vote http endpoint and logic (#997) #241

Workflow file for this run

name: Test Docs
on:
push:
paths: ["docs/**"]
branches-ignore: ["release/*", "nightly"]
tags-ignore: ["v*"]
pull_request:
paths: ["docs/**"]
branches-ignore: ["release/*", "nightly"]
jobs:
test_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use pnpm
uses: pnpm/action-setup@v4
with:
version: 9.10.0
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build Docs
run: pnpm build:docs
- name: Lint Docs
run: pnpm eslint docs && pnpm prettier --check docs