Add an approximation of an Azure Pipeline
This commit is contained in:
parent
52c75c8a43
commit
b986b11441
|
@ -0,0 +1,9 @@
|
|||
src
|
||||
node_modules
|
||||
|
||||
README.md
|
||||
.*
|
||||
package.json
|
||||
yarn.lock
|
||||
webpack.config.js
|
||||
tsconfig.json
|
|
@ -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
|
Loading…
Reference in New Issue