mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
29 lines
561 B
YAML
29 lines
561 B
YAML
# 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
|
|
displayName: 'Install dependencies'
|
|
|
|
- script: |
|
|
yarn test:fixtures -w=2
|
|
displayName: 'Test: Build Fixtures'
|
|
|
|
- script: |
|
|
yarn test:unit -w=2
|
|
displayName: 'Test: Run unit tests'
|