Skip to content

Commit 1536a7c

Browse files
feat(api): merge api-metrics into api (open-telemetry#3374)
Co-authored-by: Marc Pichler <[email protected]>
1 parent bdc603c commit 1536a7c

File tree

150 files changed

+698
-1687
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+698
-1687
lines changed

.github/workflows/unit-test.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,15 @@ jobs:
4747
4848
- name: Build 🔧
4949
run: |
50-
npm run compile
50+
npx lerna run compile
5151
5252
- name: Unit tests
53-
run: npm run test
53+
run: |
54+
# TODO(legendecas): webpack https://stackoverflow.com/questions/69692842/error-message-error0308010cdigital-envelope-routinesunsupported
55+
if [ "${{ matrix.node_version }}" = "18" ]; then
56+
export NODE_OPTIONS=--openssl-legacy-provider
57+
fi
58+
npm run test
5459
- name: Report Coverage
5560
run: npm run codecov
5661
if: ${{ matrix.node_version == '14' }}
@@ -88,7 +93,8 @@ jobs:
8893
8994
- name: Build 🔧
9095
run: |
91-
npm run compile
96+
npm config set script-shell "C:\\Program Files\\git\\bin\\bash.exe"
97+
npx lerna run compile
9298
9399
- name: Unit tests
94100
run: npm run test

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.
66

77
### :boom: Breaking Change
88

9+
* feat(api): merge api-metrics into api [#3374](https://github.com/open-telemetry/opentelemetry-js/pull/3374) @legendecas
10+
911
### :rocket: (Enhancement)
1012

1113
* feat(sdk-trace): re-export sdk-trace-base in sdk-trace-node and web [#3319](https://github.com/open-telemetry/opentelemetry-js/pull/3319) @legendecas

api-metrics/.eslintrc.js

-8
This file was deleted.

api-metrics/LICENSE

-201
This file was deleted.

api-metrics/README.md

-98
This file was deleted.

api-metrics/karma.conf.js

-24
This file was deleted.

0 commit comments

Comments
 (0)