From a72157ede81cd0248d54f2cffa86a4ed75b96e75 Mon Sep 17 00:00:00 2001 From: Rob DeLine Date: Mon, 8 Oct 2018 22:41:17 +0000 Subject: [PATCH] Revert "Deleted azure-pipelines.yml" --- azure-pipelines.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 azure-pipelines.yml diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..7425c6d --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# Node.js with webpack +# Build a Node.js project using the webpack CLI. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +pool: + vmImage: 'Ubuntu 16.04' + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '8.x' + displayName: 'Install Node.js' + +- script: | + npm i -g typescript + npm install + npm run build + npm run build_parser + npx webpack --config webpack.config.js + displayName: 'npm install, run webpack'