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>2021-06-13 03:16:11 +0300
committerThomas Schmid <thsmi@users.noreply.github.com>2021-06-13 03:16:11 +0300
commitceb65c9c38a5f12bf4e889536b068c8afaac38c4 (patch)
tree2d051fe9c8fc687498f6a4b6fd66b775ed1fd453 /.azure
parent3f1ea0b34218da62b3aca105f1bfe3ea442a57a1 (diff)
Set up CI with Azure Pipelines
[skip ci]
Diffstat (limited to '.azure')
-rw-r--r--.azure/web.yaml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.azure/web.yaml b/.azure/web.yaml
new file mode 100644
index 00000000..676233af
--- /dev/null
+++ b/.azure/web.yaml
@@ -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'