Add warning to .circleci/config.yml about Node.js version specific tests.

Hopefully this will act as reminder for the future.  I've used `NODE` here
as a sort of `TODO` so other references in the codebase might be more easily
located.
This commit is contained in:
Jesse Rosenberger 2018-09-26 13:29:52 +03:00
parent 0d6ef264da
commit 74ca606c8a
No known key found for this signature in database
GPG key ID: C0CCCF81AA6C08D8

View file

@ -48,6 +48,8 @@ jobs:
# Platform tests, each with the same tests but different platform or version.
# The docker tag represents the Node.js version and the full list is available
# at https://hub.docker.com/r/circleci/node/.
# NODE: Note certain tests are currently being skipped for Node.js 6.
Node.js 6:
docker: [{ image: 'circleci/node:6' }]
<<: *common_test_steps
@ -56,6 +58,7 @@ jobs:
docker: [{ image: 'circleci/node:8' }]
<<: *common_test_steps
# NODE: Note certain tests are currently being skipped for Node.js 10.
Node.js 10:
docker: [{ image: 'circleci/node:10' }]
<<: *common_test_steps