Add an approximation of an Azure Pipeline

This commit is contained in:
Michael Thomas 2022-01-22 14:54:45 -05:00
parent 52c75c8a43
commit b986b11441
2 changed files with 25 additions and 0 deletions

9
.artifactignore Normal file
View File

@ -0,0 +1,9 @@
src
node_modules
README.md
.*
package.json
yarn.lock
webpack.config.js
tsconfig.json

16
azure-pipelines.yaml Normal file
View File

@ -0,0 +1,16 @@
trigger:
- main
pool:
vmImage: 'ubuntu-latest'
steps:
- script: yarn install
displayName: 🛠️ Install Dependencies
- script: yarn build
displayName: 🚀 Build Plugin
- task: PublishPipelineArtifact@1
displayName: 📦 Create Artifact
inputs:
targetPath: $(System.DefaultWorkingDirectory)
artifactName: CognitoFormsPlugin