Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/thsmi/sieve.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/.azure
diff options
context:
space:
mode:
authorThomas Schmid <thsmi@users.noreply.github.com>2020-05-17 02:13:19 +0300
committerThomas Schmid <thsmi@users.noreply.github.com>2020-05-17 02:13:19 +0300
commite679e07d832fdd52cd78cb678daadc1e75ae58bc (patch)
treecaafb24e475cb1f2f3a812014ea24f32432bccf3 /.azure
parent01047c69fe0e7222081c2488bc57b0275ce813b1 (diff)
Update windows.yml for Azure Pipelines
Diffstat (limited to '.azure')
-rw-r--r--.azure/windows.yml27
1 files changed, 11 insertions, 16 deletions
diff --git a/.azure/windows.yml b/.azure/windows.yml
index 975c52d4..9259476c 100644
--- a/.azure/windows.yml
+++ b/.azure/windows.yml
@@ -3,19 +3,14 @@
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
-trigger:
-- master
-
-pool:
- vmImage: 'ubuntu-latest'
-
-steps:
-- task: NodeTool@0
- inputs:
- versionSpec: '10.x'
- displayName: 'Install Node.js'
-
-- script: |
- npm install
- npm run build
- displayName: 'npm install and build'
+jobs:
+- job: Windows
+ pool:
+ vmImage: 'windows-latest'
+ steps:
+ - script: yarn install
+ displayName: "Install Yarn"
+ - task: gulp@1
+ inputs:
+ targets: 'app:zip-win32'
+ enableCodeCoverage: false