new license file version [CI SKIP]

This commit is contained in:
2023-03-15 14:05:18 +00:00
parent 3ea7a015a9
commit d0fe6a2e85
19 changed files with 1110 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
# 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'