Node version by wildcard

Is it possible to specify your node version using a wildcard in the circle.yml?

e.g
machine:
node:
version: 6.9.*

would install the latest 6.9 release

It is not. That version is fed directly to NVM, which doesn’t support wildcards, as far as I know.

1 Like