Skip to content
This repository was archived by the owner on May 11, 2022. It is now read-only.

Commit 46e9ac2

Browse files
committed
FUSETOOLS2-1413 - specify node 14 where possible in CI
Signed-off-by: Aurélien Pupier <[email protected]>
1 parent f48bf59 commit 46e9ac2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/macos-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- uses: actions/setup-node@v2
2020
with:
21-
node-version: '12'
21+
node-version: '14'
2222
cache: 'npm'
2323
- name: Install global dependencies
2424
run: npm install -g typescript vsce

.github/workflows/windows-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- uses: actions/setup-node@v1
2020
with:
21-
node-version: '12'
21+
node-version: '14'
2222
cache: 'npm'
2323
- name: Install global dependencies
2424
run: npm install -g typescript vsce

JenkinsFile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ node('rhel8'){
1010
stage('Install requirements') {
1111
def nodeHome = tool 'nodejs-lts'
1212
env.PATH="${env.PATH}:${nodeHome}/bin"
13+
sh "node --version"
1314
sh "npm install -g typescript vsce"
1415
}
1516

0 commit comments

Comments
 (0)