Skip to content

Commit

Permalink
Update Node Express template to use 16 LTS (#580)
Browse files Browse the repository at this point in the history
Could you please update the Node.js Express template to use a newer version of Node.js? It's used in our documentation samples.
  • Loading branch information
juliakm authored Feb 27, 2023
1 parent e87f80e commit 195b673
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/node.js-express-webapp-to-linux-on-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ stages:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
versionSpec: '16.x'
displayName: 'Install Node.js'

- script: |
Expand Down Expand Up @@ -73,6 +73,6 @@ stages:
azureSubscription: $(azureSubscription)
appType: webAppLinux
appName: $(webAppName)
runtimeStack: 'NODE|10.10'
runtimeStack: 'NODE|16-lts'
package: $(Pipeline.Workspace)/drop/$(Build.BuildId).zip
startUpCommand: 'npm run start'
startUpCommand: 'npm run start'

0 comments on commit 195b673

Please sign in to comment.