From 354326ec72f5ace1320f9213d01bea3ea6ac2bc1 Mon Sep 17 00:00:00 2001 From: Yan Zhang <2351748+Eskibear@users.noreply.github.com> Date: Wed, 3 Jul 2024 16:31:44 +0800 Subject: [PATCH] Delete azure-pipelines.yml --- azure-pipelines.yml | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 azure-pipelines.yml 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'