Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

azure-pipelines.yml: Test on current versions of Ubuntu and Node.js #682

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ extends:
jobs:
- job: Linux
pool:
name: 1es-oss-ubuntu-22.04-x64
name: 1es-oss-ubuntu-24.04-x64
os: Linux
strategy:
matrix:
node_16_x:
node_version: 16.x
node_18_x:
node_version: 18.x
node_20_x:
node_version: 20.x
node_22_x:
node_version: 22.x
steps:
- task: NodeTool@0
inputs:
Expand All @@ -56,6 +60,10 @@ extends:
node_version: 16.x
node_18_x:
node_version: 18.x
node_20_x:
node_version: 20.x
node_22_x:
node_version: 22.x
steps:
- task: NodeTool@0
inputs:
Expand Down Expand Up @@ -84,6 +92,10 @@ extends:
node_version: 16.x
node_18_x:
node_version: 18.x
node_20_x:
node_version: 20.x
node_22_x:
node_version: 22.x
steps:
- task: NodeTool@0
inputs:
Expand All @@ -108,6 +120,10 @@ extends:
matrix:
node_18_x:
node_version: 18.x
node_20_x:
node_version: 20.x
node_22_x:
node_version: 22.x
steps:
- task: NodeTool@0
inputs:
Expand Down Expand Up @@ -178,12 +194,12 @@ extends:
targetPath: $(Build.SourcesDirectory)
artifactName: drop
pool:
name: 1es-oss-ubuntu-22.04-x64
name: 1es-oss-ubuntu-24.04-x64
os: Linux
steps:
- task: NodeTool@0
inputs:
versionSpec: '18.x'
versionSpec: '22.x'
displayName: 'Install Node.js'
- script: |
npm i
Expand Down