Support partial ranges in FOUNDCONTENT response for LightClientUpdate
#2588
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: PortalNetwork | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| env: | |
| cwd: ${{github.workspace}}/packages/portalnetwork | |
| defaults: | |
| run: | |
| working-directory: packages/portalnetwork | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-unit-portalnetwork: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - run: npm i -g @mapbox/node-pre-gyp | |
| - run: npm ci | |
| working-directory: ${{ github.workspace }} | |
| - run: npm run biome | |
| working-directory: ${{ github.workspace }} | |
| - run: npm run test | |
| test-integration-portalnetwork: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: 'npm' | |
| - run: npm i -g @mapbox/node-pre-gyp | |
| - run: npm ci | |
| working-directory: ${{ github.workspace }} | |
| - run: npm run test:integration | |