Skip to content

fix(docs): add server_count field to mock data in getting-started page #1

fix(docs): add server_count field to mock data in getting-started page

fix(docs): add server_count field to mock data in getting-started page #1

Workflow file for this run

name: "ESLint: docs"
on:
pull_request:
paths:
- 'docs/**'
jobs:
lint:
name: "Lint"
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- uses: ./.github/actions/setup-node-env
with:
node-version: 18
cache-path: docs/node_modules
cache-key: "${{hashFiles('docs/pnpm-lock.yaml')}}"
project: docs
- name: Run lint script on /docs
run: |
cd docs
npm run lint