Skip to content

Commit

Permalink
fix: update node to use v16 (webex#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
priynand authored and GitHub Enterprise committed Jul 6, 2022
1 parent e4b1e50 commit 4ea99a8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
8 changes: 4 additions & 4 deletions ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
pipeline {
agent any

tools {nodejs "Node v14"}
tools {nodejs "Node v16"}

options {
ansiColor('xterm')
Expand Down Expand Up @@ -65,7 +65,7 @@ pipeline {
stage('Run Integration Tests on Safari') {
steps {
withCredentials([string(credentialsId: 'SAUCE_ACCESS_KEY', variable: 'SAUCE_ACCESS_KEY')]) {
echo "SAUCE=$SAUCE"
echo "SAUCE=$SAUCE"
echo "SAUCE_USERNAME=$SAUCE_USERNAME"
echo "SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY"
sh './node_modules/yarn/bin/yarn test:integration:safari'
Expand All @@ -75,7 +75,7 @@ pipeline {
stage('Run Integration Tests on Firefox') {
steps {
withCredentials([string(credentialsId: 'SAUCE_ACCESS_KEY', variable: 'SAUCE_ACCESS_KEY')]) {
echo "SAUCE=$SAUCE"
echo "SAUCE=$SAUCE"
echo "SAUCE_USERNAME=$SAUCE_USERNAME"
echo "SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY"
sh './node_modules/yarn/bin/yarn test:integration:firefox'
Expand All @@ -85,7 +85,7 @@ pipeline {
stage('Run Integration Tests on Edge') {
steps {
withCredentials([string(credentialsId: 'SAUCE_ACCESS_KEY', variable: 'SAUCE_ACCESS_KEY')]) {
echo "SAUCE=$SAUCE"
echo "SAUCE=$SAUCE"
echo "SAUCE_USERNAME=$SAUCE_USERNAME"
echo "SAUCE_ACCESS_KEY=$SAUCE_ACCESS_KEY"
sh './node_modules/yarn/bin/yarn test:integration:edge'
Expand Down
5 changes: 0 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,5 @@
"eslint --max-warnings=0",
"cspell"
]
},
"engines": {
"node": ">=0.12",
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
}
}

0 comments on commit 4ea99a8

Please sign in to comment.