Skip to content

docs(analytics): document transaction queue depth metrics #897

docs(analytics): document transaction queue depth metrics

docs(analytics): document transaction queue depth metrics #897

Workflow file for this run

name: Validate
on:
pull_request:
types: [opened, synchronize, reopened]
# Concurrency configuration to cancel previous runs on new commits
concurrency:
group: validate-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
validate:
name: ${{ matrix.check }}
runs-on: ubuntu-latest
strategy:
matrix:
check:
- TypeScript Check
- Lint Check
- Format Check
include:
- check: TypeScript Check
command: typecheck
- check: Lint Check
command: lint
- check: Format Check
command: format:check
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: '24'
cache: 'npm'
cache-dependency-path: 'package-lock.json'
- name: Install dependencies
run: npm ci
- name: Run ${{ matrix.check }}
run: npm run ${{ matrix.command }}