From 20d49eed60cffdabc3c5090ac324908d2c69f74f Mon Sep 17 00:00:00 2001 From: Sudhir Verma Date: Wed, 23 Feb 2022 17:56:06 +0530 Subject: [PATCH] using latest nodejs version for build (#180) --- .github/workflows/main.yml | 2 +- Jenkinsfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 36a52e7d..c7064705 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: os: [macos-latest, ubuntu-latest, windows-latest] - node: [10] + node: [16.11.0] steps: - uses: actions/checkout@v2 diff --git a/Jenkinsfile b/Jenkinsfile index b01d644e..5921f359 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,7 +7,7 @@ node('rhel8'){ } stage('Install requirements') { - def nodeHome = tool 'nodejs-12.13.1' + def nodeHome = tool 'nodejs-lts' env.PATH="${env.PATH}:${nodeHome}/bin" sh "npm install -g typescript vsce" }