From bb6780c3188093ded7b7ecf55b26c31c69da70ce Mon Sep 17 00:00:00 2001 From: Daniel James Smith Date: Thu, 1 Apr 2021 22:36:07 +0200 Subject: [PATCH] Deleted azure-pipelines.yml --- azure-pipelines.yml | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml deleted file mode 100644 index edfcfb96de..0000000000 --- a/azure-pipelines.yml +++ /dev/null @@ -1,38 +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: - branches: - include: - - '*' - exclude: - - l10n_master - -pool: - vmImage: 'vs2017-win2016' - -name: $(Rev:r) - -steps: -- task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' - -- powershell: | - choco install cloc --no-progress - cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git - displayName: 'Cloc' - -- script: | - node --version - call npm --version - displayName: 'Version checks' - -- script: call npm install - displayName: 'npm install' - -- script: call npm run build - displayName: 'npm run build'