Skip to content

Rewrite computeSelfTime to improve performance on Trace Statistics page #3001

Rewrite computeSelfTime to improve performance on Trace Statistics page

Rewrite computeSelfTime to improve performance on Trace Statistics page #3001

Workflow file for this run

name: "Lint and Build"
on:
merge_group:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
lint-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
cache: npm
node-version: '22'
- run: npm ci
- name: Run depcheck
run: npm run depcheck
- run: npm run lint
- run: npm run build
- name: Ensure PR is not on main branch
uses: jaegertracing/jaeger/.github/actions/block-pr-from-main-branch@main