We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The workflow .circleci/test-deploy.yml is using mixed major versions of Node.js 18.x and 20.x (18.20.3 & 20.6.0).
18.x
20.x
18.20.3
20.6.0
circleci-orb/.circleci/test-deploy.yml
Lines 10 to 13 in cc4944d
Lines 25 to 26 in cc4944d
There is no guarantee that a project installed with npm under Node.js 20 will always run under Node.js 18 even though at the moment it does.
20
18
Update the workflow .circleci/test-deploy.yml to use one major version of Node.js, the current LTS version 20.15.1, or later 20.x if available (see Node.js release schedule and Download Node.js).
20.15.1
17.x
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Issue
The workflow .circleci/test-deploy.yml is using mixed major versions of Node.js
18.x
and20.x
(18.20.3
&20.6.0
).circleci-orb/.circleci/test-deploy.yml
Lines 10 to 13 in cc4944d
circleci-orb/.circleci/test-deploy.yml
Lines 25 to 26 in cc4944d
There is no guarantee that a project installed with npm under Node.js
20
will always run under Node.js18
even though at the moment it does.Desired
Update the workflow .circleci/test-deploy.yml to use one major version of Node.js, the current LTS version
20.15.1
, or later20.x
if available (see Node.js release schedule and Download Node.js).20.x
requires a minimum of Angular17.x
(see Angular - Actively supported versions). See PR test(deps): update angular example to version 17.3.12 #480.The text was updated successfully, but these errors were encountered: