From c454d6cf2c895be39e7ae9d1b55c039ed952dcb4 Mon Sep 17 00:00:00 2001 From: Daniel Dyla Date: Wed, 6 May 2020 15:32:34 -0400 Subject: [PATCH] Reintroduce node 13 tests (#1026) --- .circleci/config.yml | 6 ++++++ README.md | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 350ee4946b4..e1dc9feb5b4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -184,6 +184,11 @@ jobs: - image: node:12 environment: *node_test_env <<: *node_unit_tests + node13: + docker: + - image: node:13 + environment: *node_test_env + <<: *node_unit_tests node14: docker: - image: node:14 @@ -213,6 +218,7 @@ workflows: - node8 - node10 - node12 + - node13 - node14 - node12-browsers diff --git a/README.md b/README.md index 6a1eee3042e..46ba523ad74 100644 --- a/README.md +++ b/README.md @@ -59,13 +59,14 @@ If you are a library author looking to build OpenTelemetry into your library, pl Platform Version | Supported ---------------- | --------- Node.JS `v14` | ✅ +Node.JS `v13` | ✅ Node.JS `v12` | ✅ Node.JS `v10` | ✅ Node.JS `v8` | See [Node Support](#node-support) below Web Browsers | ✅ See [Browser Support](#browser-support) below ### Node Support -Automated tests are run using the latest release of each currently supported LTS version of Node.JS. +Automated tests are run using the latest release of each currently active version of Node.JS. While Node.JS v8 is no longer supported by the Node.JS team, the latest version of Node.JS v8 is still included in our testing suite. Please note that versions of Node.JS v8 prior to `v8.5.0` will NOT work, because OpenTelemetry Node depends on the `perf_hooks` module introduced in `v8.5.0`