diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..ed9dd8d --- /dev/null +++ b/azure-pipelines.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' + +variables: + ARGOSTOKEN: $(ARGOS_TOKEN) + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '10.x' + displayName: 'Install Node.js' +- script: yarn add argos-cli && yarn argos upload snap --batchCount 5 --token $(ARGOSTOKEN) --branch $(Build.SourceBranch) --commit $(Build.SourceVersion) + displayName: 'npm install and build' diff --git a/snap/snap.png b/snap/snap.png new file mode 100644 index 0000000..0a8503a Binary files /dev/null and b/snap/snap.png differ