From 6c59f14a0ae692f35a3870d513cf21470998362b Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Wed, 26 Dec 2018 21:40:21 +0100 Subject: [PATCH] ci: upgrade to node.js v10.x In theory, the (very simple) GitGitGadget code should compile easily with any node.js version that supports ES6. In practice, only a proper test suite can give us enough confidence that that is the case. Luckily, even GitGitGadget's rather sparse test suite covers enough to give us that confidence, and we should be able to upgrade to node.js v10.x without issues (because v8.x is expected to not receive any regular updates anymore come April '19, and not even security updates come December '19). Signed-off-by: Johannes Schindelin --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6df602297c..aa84d1eaf9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -12,7 +12,7 @@ pool: steps: - task: NodeTool@0 inputs: - versionSpec: '8.x' + versionSpec: '10.x' displayName: 'Install Node.js' - script: |