Skip to content

Bump documentation from 13.2.5 to 14.0.3 (#6071) #24

Bump documentation from 13.2.5 to 14.0.3 (#6071)

Bump documentation from 13.2.5 to 14.0.3 (#6071) #24

Workflow file for this run

name: Tests
on:
push:
branches: [dev]
pull_request:
branches: [dev]
jobs:
quality:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn --frozen-lockfile
- run: npm run lint
- run: npm run lint:ts
- run: npm run format:check
- run: yarn build
- run: npm run ts:build:check
- run: npm run docs:api
- run: npm test