Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: test on node 14 #1003

Merged
merged 3 commits into from
May 1, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ jobs:
- image: node:12
environment: *node_test_env
<<: *node_unit_tests
node13:
node14:
docker:
- image: node:13
- image: node:14
environment: *node_test_env
<<: *node_unit_tests
node12-browsers:
Expand All @@ -213,6 +213,6 @@ workflows:
- node8
- node10
- node12
- node13
- node14
- node12-browsers

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ To get started tracing your own application, see the [Getting Started Guide](get

If you are a library author looking to build OpenTelemetry into your library, please see [the documentation][docs]. As a library author, it is important that you only depend on properties and methods published on the public API. If you use any properties or methods from the SDK that are not officially a part of the public API, your library may break if an [Application Owner](#application-owner) uses a different SDK implementation.

## Supported Runtimes

Node.js v10 and greater is officially supported, but the tests are also run against the latest release of Node.js v8.
Note that versions of Node.js older than 8.5.0 are known to not work.

Browser tests are run in Chrome.
There is currently no list of officially supported browsers, but OpenTelemetry should work in supported versions of major browsers.

## Release Schedule

OpenTelemetry JS is under active development.
Expand Down