Files
Account/azure-pipelines.yml
Razieh Kheftan 22db28b287 Set up CI with Azure Pipelines
[skip ci]
2025-07-16 17:59:26 +03:30

22 lines
440 B
YAML

# 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:
- develop
pool:
vmImage: ubuntu-latest
steps:
- task: NodeTool@0
inputs:
versionSpec: '20.x'
displayName: 'Install Node.js'
- script: |
npm install
npm run build
displayName: 'npm install and build'