E5E0 fix(instrumentation-http): remove port from ATTR_CLIENT_ADDRESS (#5957) · open-telemetry/opentelemetry-js@c7f75d9 · GitHub
[go: up one dir, main page]

Skip to content

fix(instrumentation-http): remove port from ATTR_CLIENT_ADDRESS (#5957) #298

fix(instrumentation-http): remove port from ATTR_CLIENT_ADDRESS (#5957)

fix(instrumentation-http): remove port from ATTR_CLIENT_ADDRESS (#5957) #298

Workflow file for this run

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
0