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:11:09 +0300
committerThomas Schmid <thsmi@users.noreply.github.com>2020-05-17 02:11:09 +0300
commit01047c69fe0e7222081c2488bc57b0275ce813b1 (patch)
treee8dab2490fd5d9f6033fcdc5742efc5f728f313f /.azure
parentb3565bf14297653c3813cb78800cd3e83604257d (diff)
Set up CI with Azure Pipelines
[skip ci]
Diffstat (limited to '.azure')
-rw-r--r--.azure/windows.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.azure/windows.yml b/.azure/windows.yml
new file mode 100644
index 00000000..975c52d4
--- /dev/null
+++ b/.azure/windows.yml
@@ -0,0 +1,21 @@
+# 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:
+- 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'