fix(sirv): clamp Range end above MAX_SAFE_INTEGER to avoid crash
#290
Workflow file for this run
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, pull_request] | |
| jobs: | |
| test: | |
| name: Node.js v${{ matrix.nodejs }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| nodejs: [14, 16, 18, 20] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.nodejs }} | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.1.30 | |
| - name: Install | |
| run: bun install | |
| - name: (coverage) Install | |
| if: matrix.nodejs >= 20 | |
| run: bun add -g c8 | |
| - name: Build | |
| run: bun run build | |
| - name: Test | |
| if: matrix.nodejs < 20 | |
| run: npm test | |
| - name: (coverage) Test | |
| if: matrix.nodejs >= 20 | |
| run: c8 --include=packages npm test | |
| - name: (coverage) Report | |
| if: matrix.nodejs >= 20 | |
| run: | | |
| c8 report --reporter=text-lcov > coverage.lcov | |
| bash <(curl -s https://codecov.io/bash) | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |