Skip to content

feat(infra): remove cli-tests DOCSTOOLS-4734 #6217

feat(infra): remove cli-tests DOCSTOOLS-4734

feat(infra): remove cli-tests DOCSTOOLS-4734 #6217

Workflow file for this run

# ⚠️ IMPORTANT: This workflow is a template from diplodoc/lint/scaffolding
# Do not edit this file in other packages - it is automatically copied from here.
# To modify this workflow, edit it in diplodoc/devops/lint/scaffolding/.github/workflows/
# and then run the scaffolding update process.
name: Quality
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [24]
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js and install dependencies
uses: diplodoc-platform/setup-node-action@v1
with:
node-version: ${{ vars.NODE_VERSION || '24' }}
- name: Run type check
run: npm run typecheck
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test
- name: Run build
run: npm run build