diff --git a/.azure-pipelines/job.yml b/.azure-pipelines/job.yml deleted file mode 100644 index 2f8a5537387..00000000000 --- a/.azure-pipelines/job.yml +++ /dev/null @@ -1,37 +0,0 @@ -parameters: - name: "" - displayName: "" - vmImage: "" - nodeVersion: "" - -jobs: - - job: ${{parameters.name}} - displayName: ${{parameters.displayName}} - pool: - vmImage: ${{parameters.vmImage}} - steps: - - task: NodeTool@0 - displayName: Install Node.js - inputs: - versionSpec: ${{parameters.nodeVersion}} - - - script: npm install - displayName: Install Packages - - - script: npm test - displayName: Test - - - task: PublishTestResults@2 - displayName: Process Test Results - condition: succeededOrFailed() - inputs: - testRunner: JUnit - testResultsFiles: $(System.DefaultWorkingDirectory)/test-results.xml - - - task: PublishCodeCoverageResults@1 - displayName: Process Coverage Results - condition: succeededOrFailed() - inputs: - codeCoverageTool: Cobertura - summaryFileLocation: $(System.DefaultWorkingDirectory)/coverage/cobertura-coverage.xml - reportDirectory: $(System.DefaultWorkingDirectory)/coverage diff --git a/README.md b/README.md index 81a4a2eaa69..0cde09fc602 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ [![NPM version][npm-image]][npm-url] -[![Build Status](https://dev.azure.com/eslint/eslint/_apis/build/status/eslint.eslint?branchName=master)](https://dev.azure.com/eslint/eslint/_build/latest?definitionId=1&branchName=master) [![Build Status](https://github.com/eslint/eslint/workflows/CI/badge.svg)](https://github.com/eslint/eslint/actions) [![Downloads][downloads-image]][downloads-url] [![Bountysource](https://www.bountysource.com/badge/tracker?tracker_id=282608)](https://www.bountysource.com/trackers/282608-eslint?utm_source=282608&utm_medium=shield&utm_campaign=TRACKER_BADGE) diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index 13a2f38c494..00000000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,38 +0,0 @@ -trigger: - - master - -jobs: - - template: .azure-pipelines/job.yml - parameters: - name: test_on_linux_node12 - displayName: Test on Node.js 12 (Linux) - vmImage: Ubuntu-16.04 - nodeVersion: 12.x - - - template: .azure-pipelines/job.yml - parameters: - name: test_on_linux_node10 - displayName: Test on Node.js 10 (Linux) - vmImage: Ubuntu-16.04 - nodeVersion: 10.x - - - template: .azure-pipelines/job.yml - parameters: - name: test_on_linux_node8 - displayName: Test on Node.js 8 (Linux) - vmImage: Ubuntu-16.04 - nodeVersion: 8.x - - - template: .azure-pipelines/job.yml - parameters: - name: test_on_windows_node12 - displayName: Test on Node.js 12 (Windows) - vmImage: Windows-2019 - nodeVersion: 12.x - - - template: .azure-pipelines/job.yml - parameters: - name: test_on_macos_node12 - displayName: Test on Node.js 12 (macOS) - vmImage: macOS-10.14 - nodeVersion: 12.x