From 2fc7f49574d4b1ff4aff37b6f5143a19bcbac4b5 Mon Sep 17 00:00:00 2001 From: Alexandru Dima Date: Wed, 23 Dec 2020 17:41:12 +0100 Subject: [PATCH] Delete old build config --- azure-pipelines.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index a9c406e4..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,28 +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' - -steps: - - task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' - - - script: | - npm install - displayName: 'npm install' - - - script: | - npm run compile - displayName: 'compile' - - - script: | - npm test - displayName: 'test'