Skip to content

Added support for the Documents endpoints #67

Added support for the Documents endpoints

Added support for the Documents endpoints #67

Workflow file for this run

name: Lint & Format
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn format:check
- name: Run ESLint
run: yarn lint