From 2bf144fb1cacec82955a3ad94a5944c8176729bf Mon Sep 17 00:00:00 2001 From: Pete Gonzalez <4673363+octogonz@users.noreply.github.com> Date: Wed, 24 Jun 2020 03:12:33 -0700 Subject: [PATCH] Upgrade Node.js for CI --- common/config/azure-pipelines/ci-build.yaml | 4 ++-- common/config/azure-pipelines/npm-publish.yaml | 2 +- common/config/azure-pipelines/npm-republish.yaml | 2 +- common/config/azure-pipelines/playground-build.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/common/config/azure-pipelines/ci-build.yaml b/common/config/azure-pipelines/ci-build.yaml index 86906a5..de68b73 100644 --- a/common/config/azure-pipelines/ci-build.yaml +++ b/common/config/azure-pipelines/ci-build.yaml @@ -4,10 +4,10 @@ jobs: strategy: maxParallel: 2 matrix: - 'NodeJs 8': - NodeVersion: 8 'NodeJs 10': NodeVersion: 10 + 'NodeJs 12': + NodeVersion: 12 steps: - checkout: self - template: templates/build.yaml diff --git a/common/config/azure-pipelines/npm-publish.yaml b/common/config/azure-pipelines/npm-publish.yaml index bc96f61..9a39a69 100644 --- a/common/config/azure-pipelines/npm-publish.yaml +++ b/common/config/azure-pipelines/npm-publish.yaml @@ -1,7 +1,7 @@ pool: vmImage: 'windows-latest' variables: - NodeVersion: 10 + NodeVersion: 12 steps: - checkout: self persistCredentials: true diff --git a/common/config/azure-pipelines/npm-republish.yaml b/common/config/azure-pipelines/npm-republish.yaml index 48689fe..02ba9c4 100644 --- a/common/config/azure-pipelines/npm-republish.yaml +++ b/common/config/azure-pipelines/npm-republish.yaml @@ -1,7 +1,7 @@ pool: vmImage: 'windows-latest' variables: - NodeVersion: 10 + NodeVersion: 12 steps: - checkout: self persistCredentials: true diff --git a/common/config/azure-pipelines/playground-build.yaml b/common/config/azure-pipelines/playground-build.yaml index 7b73961..2b8b69f 100644 --- a/common/config/azure-pipelines/playground-build.yaml +++ b/common/config/azure-pipelines/playground-build.yaml @@ -1,7 +1,7 @@ resources: - repo: self variables: - NodeVersion: 10 + NodeVersion: 12 steps: - checkout: self - template: templates/build.yaml