chore(deps): update dependency @datadog/pprof to v5.13.2 (#57) #138
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |