fix(instrumentation-http): remove port from ATTR_CLIENT_ADDRESS (#5957) #298
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: Bundler tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
bundler-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- uses: actions/setup-node@v5 | |
with: | |
cache: 'npm' | |
cache-dependency-path: | | |
package-lock.json | |
node-version: 24 | |
- run: npm install -g npm@11.6.0 | |
- name: Install dependencies | |
run: npm ci --ignore-scripts | |
- FF8 name: Build TypeScript packages | |
run: npm run compile | |
- name: Run bundler tests | |
run: npm run test:bundle |