frontend/.pnpm-store/v3/files/45/4e8692536d000a2f7853ca72bbd008a90936f9a36937e899d5f0f7d9a51c22769c8b92735ae6ed4dfa2a73bb97b9c24ca68ea9aca158c548c8b6ee974259bd

22 lines
458 B
Plaintext

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