From d64994f1a7d00cb2bac8a303e6757127118d2d2d Mon Sep 17 00:00:00 2001 From: Shawn Erquhart Date: Mon, 30 Sep 2019 13:28:42 -0400 Subject: [PATCH] chore: remove azure pipelines (using GH actions) (#2711) --- .github/workflows/nodejs.yml | 2 +- azure-pipelines.yml | 27 --------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 920f130b..b21e414f 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [8.x, 10.x, 12.x] + node-version: [8.x, 10.x] steps: - uses: actions/checkout@v1 diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index e8986f5e..00000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,27 +0,0 @@ -jobs: -- job: ci - pool: - vmImage: 'Ubuntu-16.04' - - strategy: - matrix: - node_8_x: - node_version: 8.x - node_10_x: - node_version: 10.x - - steps: - - task: NodeTool@0 - inputs: - versionSpec: $(node_version) - - - script: | - apt-get update && apt-get install -y libgconf-2-4 - node --version - npm --version - yarn --version - yarn - yarn bootstrap - yarn test:all:ci - env: - CYPRESS_RECORD_KEY: $(cypressRecordKey)