Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Fix component governance packages #1493

Merged
merged 12 commits into from
Apr 29, 2022
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

# Node 14 matches the version of Node used by VS Code when this was
# written, but it should be updated when VS Code updates its Node version.
# updated to Node 16
# Node needs to be installed before OS-specific setup so that we can run
# the hash verification script.
- name: Use Node 14.x
- name: Use Node 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x

- name: Windows setup
if: ${{ matrix.os == 'windows-latest' }}
Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ steps:
# Node 14 matches the version of Node used by VS Code when this was written,
# but it should be updated when VS Code updates its Node version.
- task: NodeTool@0
displayName: Use Node 14.x
displayName: Use Node 16.x
inputs:
versionSpec: 14.x
versionSpec: 16.x
- script: npm install --global gulp node-gyp vsce
displayName: Install global dependencies
- script: npm install
Expand Down Expand Up @@ -171,7 +171,7 @@ steps:
uploadRoslyn: false
uploadTSLint: false
# Don't open bugs for PR builds
condition: ne(variables['Build.Reason'], 'PullRequest')
# condition: ne(variables['Build.Reason'], 'PullRequest')

- task: GitHubRelease@0
displayName: Publish to GitHub
Expand Down
Loading