Allure report extension: Node version (16) is end-of-life #3077
-
Hi Allure team, We’re currently using your Allure Report extension for Azure DevOps and recently encountered the following warning during our pipeline execution: It seems that Node.js 16 has reached end-of-life, we’d like to ask if you have any plans to update the extension to support a more recent Node.js version (e.g., 18 or later). We really appreciate your work and look forward to any updates or guidance you can provide. Thanks and best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 13 replies
-
Hey there! The extension doesn't manage node version directly. It utilizes distribution from your pipeline, so if you update the node version the warning should disappear. Example pipeline config: steps:
- task: NodeTool@0
inputs:
- versionSpec: "16.x"
+ versionSpec: "20.x"
displayName: "Install Node.js"
# test steps goes here
# ...
- task: PublishAllureReport@1
displayName: "publish allure report"
inputs:
testResultsDir: "allure-results" |
Beta Was this translation helpful? Give feedback.
-
Hi, everyone. |
Beta Was this translation helpful? Give feedback.
Hi, everyone.
We've just released version 1.4.7, which should fix the problem. Please, check it out.