Set up CI with Azure Pipelines

[skip ci]
This commit is contained in:
l198881 2021-04-21 08:43:11 -03:00
parent 4cc1228011
commit a2547c2b84

21
azure-pipelines-1.yml Normal file
View file

@ -0,0 +1,21 @@
# Node.js with React
# Build a Node.js project that uses React.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- main
pool:
vmImage: ubuntu-latest
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: |
npm install
npm run build
displayName: 'npm install and build'