diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 04a75dbd..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,46 +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: -- master - -pool: - vmImage: 'ubuntu-latest' - -strategy: - matrix: - node_8_x: - node_version: 8.x - node_9_x: - node_version: 9.x - node_10_x: - node_version: 10.x - node_11_x: - node_version: 11.x - node_12_x: - node_version: 12.x - -steps: -- task: NodeTool@0 - inputs: - versionSpec: $(node_version) - displayName: 'Install Node.js' - -- script: | - npm install - npm run build - displayName: 'npm install and build' - env: - # Pretend to be AppVeyor for now - APPVEYOR: true - APPVEYOR_BUILD_NUMBER: $(Build.BuildNumber) - APPVEYOR_BUILD_ID: $(Agent.OS)_$(node_version) - APPVEYOR_REPO_COMMIT: $(Build.SourceVersion) - APPVEYOR_REPO_BRANCH: $(Build.SourceBranchName) - # Overwrite the AppVeyor Service Name - COVERALLS_SERVICE_NAME: Azure Pipelines - #COVERALLS_REPO_TOKEN: $(COVERALLS_REPO_TOKEN_SECRET) - COVERALLS_PARALLEL: true - CI_PULL_REQUEST: $(System.PullRequest.PullRequestNumber) \ No newline at end of file