Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ jobs:
run: npm run compile

- run: npm test
if: ${{ matrix.node_version != '23' && matrix.node_version != '24' }}
if: ${{ matrix.node_version != '22' && matrix.node_version != '23' && matrix.node_version != '24' }}
# Node.js >= 23 type stripping conflicts with mocha usage of ts-node.
# See https://github.com/open-telemetry/opentelemetry-js/issues/5415
- run: npm test
env:
NODE_OPTIONS: '--no-experimental-strip-types'
if: ${{ matrix.node_version == '23' || matrix.node_version == '24' }}
if: ${{ matrix.node_version == '22' || matrix.node_version == '23' || matrix.node_version == '24' }}

- name: Report Coverage
uses: codecov/codecov-action@v5
Expand Down
Loading