From 7fe349a40a9ee1f9299ba94f0f812fb9bfd9ec6e Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Sat, 11 Jul 2020 15:27:35 -0700 Subject: [PATCH] feat: add version variables to other ci pipelines --- .ci/nightly.yml | 2 ++ .ci/slow-tests.yml | 4 ++++ .ci/stable.yml | 2 ++ 3 files changed, 8 insertions(+) diff --git a/.ci/nightly.yml b/.ci/nightly.yml index c70bc102..f55b95c7 100644 --- a/.ci/nightly.yml +++ b/.ci/nightly.yml @@ -5,6 +5,8 @@ pr: none jobs: - job: nightly_release displayName: Nightly Release + variables: + node_version: 12.13.0 pool: vmImage: 'ubuntu-18.04' steps: diff --git a/.ci/slow-tests.yml b/.ci/slow-tests.yml index 190d03bd..4a2c63cb 100644 --- a/.ci/slow-tests.yml +++ b/.ci/slow-tests.yml @@ -6,6 +6,8 @@ jobs: - job: macOS pool: vmImage: 'macOS-10.15' + variables: + node_version: 12.13.0 steps: - template: common-validation.yml parameters: @@ -15,6 +17,8 @@ jobs: - job: Linux pool: vmImage: 'ubuntu-18.04' + variables: + node_version: 12.13.0 steps: - template: common-validation.yml parameters: diff --git a/.ci/stable.yml b/.ci/stable.yml index f93cc168..84529da2 100644 --- a/.ci/stable.yml +++ b/.ci/stable.yml @@ -8,6 +8,8 @@ pr: none jobs: - job: stable_release displayName: Stable Release + variables: + node_version: 12.13.0 pool: vmImage: 'ubuntu-18.04' steps: