File tree Expand file tree Collapse file tree 7 files changed +25
-40
lines changed
examples/basic-tracer-node
opentelemetry-context-zone-peer-dep
opentelemetry-core/src/utils Expand file tree Collapse file tree 7 files changed +25
-40
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,26 @@ jobs:
16
16
matrix :
17
17
node_version :
18
18
- " 22"
19
- runs-on : equinix-bare-metal
19
+ runs-on : oracle-bare-metal-64cpu-512gb-x86-64
20
+ container :
21
+ image : ubuntu:24.04
20
22
timeout-minutes : 10
21
23
env :
22
24
NPM_CONFIG_UNSAFE_PERM : true
23
25
steps :
26
+ # Apt packages:
27
+ # - git: Needed for 'npm run submodule'
28
+ - name : Setup container environment
29
+ run : |
30
+ apt-get update && apt-get install --fix-missing -y git
31
+
24
32
- name : Checkout
25
33
uses : actions/checkout@v4
26
34
35
+ # Avoid "detected dubious ownership in repository" error when running
36
+ # `npm run submodule`.
37
+ - run : git config --global --add safe.directory $GITHUB_WORKSPACE
38
+
27
39
- uses : actions/setup-node@v4
28
40
with :
29
41
cache : ' npm'
Original file line number Diff line number Diff line change 65
65
contents : write
66
66
steps :
67
67
- name : Download artifact from generate-sboms
68
- uses : actions/download-artifact@v4
68
+ uses : actions/download-artifact@v5
69
69
with :
70
70
name : SBOM.zip
71
71
- name : Upload release asset
Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ jobs:
60
60
run : npm run compile
61
61
62
62
- run : npm test
63
- if : ${{ matrix.node_version != '23' && matrix.node_version != '24' }}
63
+ if : ${{ matrix.node_version != '22' && matrix.node_version != ' 23' && matrix.node_version != '24' }}
64
64
# Node.js >= 23 type stripping conflicts with mocha usage of ts-node.
65
65
# See https://github.com/open-telemetry/opentelemetry-js/issues/5415
66
66
- run : npm test
67
67
env :
68
68
NODE_OPTIONS : ' --no-experimental-strip-types'
69
- if : ${{ matrix.node_version == '23' || matrix.node_version == '24' }}
69
+ if : ${{ matrix.node_version == '22' || matrix.node_version == ' 23' || matrix.node_version == '24' }}
70
70
71
71
- name : Report Coverage
72
72
uses : codecov/codecov-action@v5
Original file line number Diff line number Diff line change 24
24
"url" : " https://github.com/open-telemetry/opentelemetry-js/issues"
25
25
},
26
26
"dependencies" : {
27
- "@opentelemetry/api" : " ^1.3.0" ,
28
- "@opentelemetry/exporter-jaeger" : " 0.25.0" ,
29
- "@opentelemetry/resources" : " 0.25.0" ,
30
- "@opentelemetry/semantic-conventions" : " ^1.22.0" ,
31
- "@opentelemetry/sdk-trace-base" : " 0.25.0"
27
+ "@opentelemetry/api" : " ^1.9.0" ,
28
+ "@opentelemetry/context-async-hooks" : " ^2.0.1" ,
29
+ "@opentelemetry/exporter-jaeger" : " ^2.0.1" ,
30
+ "@opentelemetry/resources" : " ^2.0.1" ,
31
+ "@opentelemetry/sdk-trace-base" : " ^2.0.1" ,
32
+ "@opentelemetry/semantic-conventions" : " ^1.36.0"
32
33
},
33
34
"homepage" : " https://github.com/open-telemetry/opentelemetry-js/tree/main/examples/basic-tracer-node"
34
35
}
Original file line number Diff line number Diff line change 78
78
"typescript" : " 5.0.4" ,
79
79
"webpack" : " 5.99.9" ,
80
80
"webpack-cli" : " 6.0.1" ,
81
- "zone.js" : " 0.15.0 "
81
+ "zone.js" : " 0.15.1 "
82
82
},
83
83
"peerDependencies" : {
84
84
"@opentelemetry/api" : " >=1.0.0 <1.10.0" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments