From 15e013ff9da804d0c449c8a646bd563d44496e45 Mon Sep 17 00:00:00 2001 From: Adam Oswald Date: Wed, 7 Feb 2024 14:23:53 -0500 Subject: [PATCH] Delete .github/workflows/azure-pipelines-5.yml --- .github/workflows/azure-pipelines-5.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/azure-pipelines-5.yml diff --git a/.github/workflows/azure-pipelines-5.yml b/.github/workflows/azure-pipelines-5.yml deleted file mode 100644 index 31476856..00000000 --- a/.github/workflows/azure-pipelines-5.yml +++ /dev/null @@ -1,22 +0,0 @@ -# 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 - -trigger: -- main - -pool: - vmImage: ubuntu-latest - -steps: -- task: NodeTool@0 - inputs: - versionSpec: '10.x' - displayName: 'Install Node.js' - -- script: | - npm install -g webpack webpack-cli --save-dev - npm install - npx webpack --config webpack.config.js - displayName: 'npm install, run webpack'