Skip to content

chore(deps): update dependency @datadog/pprof to v5.13.2 (#57) #138

chore(deps): update dependency @datadog/pprof to v5.13.2 (#57)

chore(deps): update dependency @datadog/pprof to v5.13.2 (#57) #138

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
ci:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node-version: ["20.x", "22.x", "24.x"]
include:
- os: ubuntu-latest
node-version: "20.x"
lint: true
build: true
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test
- name: Run linting
if: matrix.lint
run: npm run lint
- name: Build and package
if: matrix.build
run: |
npm pack --dry-run
echo "Package size:"
npm pack --silent | xargs ls -lh
- name: Test CLI installation
if: matrix.build
run: |
npm pack
npm install -g *.tgz
flame --help