Skip to content

Commit

Permalink
Merge 8656a00 into b29505f
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhirverma authored Nov 24, 2021
2 parents b29505f + 8656a00 commit 594c8c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- uses: actions/checkout@v2

# Set up Node
- name: Use Node 10.x
- name: Use Node 16.x
uses: actions/setup-node@v1
with:
node-version: 10.16.0
node-version: 16.11.0

# Run install dependencies
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ node('rhel8'){
}

stage ('Install vscode-tekton build requirements') {
def nodeHome = tool 'nodejs-12.13.1'
def nodeHome = tool 'nodejs-16.11.0'
env.PATH="${env.PATH}:${nodeHome}/bin"
sh "npm install -g typescript vsce"
}
Expand Down
2 changes: 1 addition & 1 deletion build/verify-tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function verifyTools(): Promise<void> {
}

const fileCheckRegex = /\w*tools.json/;
cp.exec('git diff --name-only origin/main -- .', async (error, stdout) => {
cp.exec('git branch', async (error, stdout) => {
if (error) {
throw error;
}
Expand Down

0 comments on commit 594c8c9

Please sign in to comment.