Nuxt/azure-pipelines.yml

29 lines
687 B
YAML
Raw Normal View History

2018-10-25 11:33:07 +00:00
# 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
pool:
vmImage: 'vs2017-win2016'
trigger:
- dev
steps:
- task: NodeTool@0
inputs:
versionSpec: '^10.10.0'
displayName: 'Install Node.js'
- script: |
yarn --frozen-lockfile --non-interactive
2018-10-25 11:33:07 +00:00
displayName: 'Install dependencies'
- script: |
2019-02-12 13:05:37 +00:00
set NODE_OPTIONS=--max_old_space_size=4096 && yarn test:fixtures -i
2018-10-25 11:33:07 +00:00
displayName: 'Test: Build Fixtures'
- script: |
2019-02-12 13:05:37 +00:00
set NODE_OPTIONS=--max_old_space_size=4096 && yarn test:unit -w=2
2018-10-25 11:33:07 +00:00
displayName: 'Test: Run unit tests'