Skip to content

docs: add description endpoints #6

docs: add description endpoints

docs: add description endpoints #6

Workflow file for this run

name: Configure Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js with version 20
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Verify eslint
run: npx eslint .
- name: Run tests
run: npm test