diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index f1925cb2..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,42 +0,0 @@ -# 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: -- main - -pool: - vmImage: ubuntu-latest - -steps: -- task: NodeTool@0 - inputs: - versionSpec: '18.x' - displayName: 'Install Node.js' - -- script: | - npm install - npm run build - displayName: 'npm install and build' - -- script: | - npm run test - displayName: 'npm test' - -- script: | - npm pack - displayName: 'npm pack' - -- task: CopyFiles@2 - displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)' - inputs: - Contents: | - *.tgz - package.json - TargetFolder: '$(Build.ArtifactStagingDirectory)' - -- task: PublishBuildArtifacts@1 - displayName: 'Publish Artifact' - inputs: - ArtifactName: 'npm-package'