diff --git a/README.md b/README.md index cf276ca3..c0a2e306 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,4 @@ Thanks [@paulgergely](https://twitter.com/paulgergely) for the initial flat design! Also see [elm-flatris](https://github.com/w0rm/elm-flatris). +Changes made to readme by Victor to test2. \ No newline at end of file diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..a7f2a029 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# Node.js with React +# Build a Node.js project that uses React. +# 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'