diff --git a/azure-pipelines-template.yml b/azure-pipelines-template.yml deleted file mode 100644 index 42cbae55cee..00000000000 --- a/azure-pipelines-template.yml +++ /dev/null @@ -1,23 +0,0 @@ -jobs: - - job: ${{ parameters.name }} - pool: - vmImage: ${{ parameters.vmImage }} - - steps: - - task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' - - script: | - node --version - npm --version - displayName: 'Print node + npm versions' - - task: Npm@1 - inputs: - command: install - displayName: 'Install deps with npm' - - task: Npm@1 - inputs: - command: custom - customCommand: test - displayName: 'Run tests' diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 0e2afc5cf8d..00000000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,15 +0,0 @@ -jobs: - - template: azure-pipelines-template.yml - parameters: - name: macOS - vmImage: macOS-10.13 - - - template: azure-pipelines-template.yml - parameters: - name: Linux - vmImage: ubuntu-16.04 - - - template: azure-pipelines-template.yml - parameters: - name: Windows - vmImage: vs2017-win2016